Helios Texpad
Here's a really straight forward easy one. I use this for training purposes a lot.
Step 1 - Prepare the sequencing machine by adding the following Exclusions to the Exclusions list:
Launch the App-V Sequencer. Browse to Tools-->Options
%CSIDL_WINDOWS%\Installer
\REGISTRY\MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings
\REGISTRY\MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall
\REGISTRY\MACHINE\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings
\REGISTRY\MACHINE\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall
Ensure Windows Search and Windows Defender services have been stopped on the machine.
Step 2 - Sequence the Application
Choose all defaults in the App-V Sequencing Wizard until you get to the window prompting you to provide a Package name. Name the package accordingly e.g. Helios Textpad 5.4.2. Take note of the Primary Directory e.g. Q:\Helios Textpad 5.4.2 as you'll want to install the application here. Click Next.
Choose Perform a custom installation. Click Next.
Launch the installeri. Ensure you select custom during the installation, ensure you choose to browse on the Dialog which allows you to choose what components to install, this will allow you to change the install directory. Change it from it's C:\Program Files\ directory to Q:\Helios Textpad 5.4.2 to match the primary directory set earlier in the sequence.
Check the box to indicate the install has been completed once you have successfully installed the application.
One the next screen you can launch Helios Textpad. If you would like you could browse to the Preferences/Options and change the colours or make other customizations. Once you have closed the application. Click Next.
If you would like to stream from a server you should choose to customize the application further. This will allow you to modify the File Type associations and shortcut if you would like. Personally I remove all FTA's because my preference is to leave the default FTAs for txt files etc. to open with Windows native Notepad but it's up to you. When complete click next.
Now you may launch to capture the Feature Block 1 (What will appear first to the user) Here I launch the application and click on File, Edit and Help to ensure the menus appear right on launch time. When complete close the application and click next.
When complete you may select File-->SaveAs
Save the application to the relevant path (what you set in the Deployment tab)
Step 3 - Application Complete
That's it. Helios TextPad is pretty easy. Actually most text editors are, I like to use these for training purposes and they are good for demo-ing the use of File Type Associations.
PLEASE MARK ANY ANSWERS TO HELP OTHERS Blog: rorymon.com Twitter: @Rorymon
Any way to turn on BitLocker Pre-Provisioning on a drive?
Hi there.
I was trying to turn on BitLocker with the new Pre-Provisioning feature from a Windows PE, but, of course, it requires TPM.
Any way to turn it on without TPM like you can do it once Windows is installed?
Thank you.
- Changed type Arthur Xie Thursday, October 11, 2012 7:22 AM
deleting my inbox
- Moved by Navdeep Bawa Wednesday, October 10, 2012 7:35 PM (From:Live Connect)
Reply:
------------------------------------
Unable to push hotfix as waiting for content issue
Just wanna ask, i recently have package a hotfix in SCCM and deployed it silently to my workstations and servers. It was able to deploy to my workstations but i have issue with deploying it to my servers. When i see the advertisement report, the under Message Name column, it says "Waiting for content". At first i assume that the package is not installed properly to my DP's, but after checking, it is installed. Then i waited for 2-3 hours, but the report still says "Waiting for content". I have even updated my DP's, but still unable to deploy the hotfix to my servers.
When i expand the report, it says to change download content from distribution point and run locally instead of run program from the distribution point. Initially, that was my settings, but still cannot... I got read this website and it says something need to change the applicationHost.config file in the server IIS settings. Before i do any changes, need you guys opinion if anyone encounter this problem before...
http://myitforum.com/myitforumwp/2011/11/09/sccm-waiting-forever-for-content/
http://pratik-pawar.blogspot.com/2011/12/troubleshooting-advertisements-stuck-in.html
- Edited by Efa77 Friday, October 5, 2012 8:21 AM
Reply:
Hi,
Yes, I change the applicationshost.config almost everytime I install a Configuration Manager 2007. It is documentet here as well in the Configuration Manager 2007 documentation on Technet. http://technet.microsoft.com/en-us/library/cc431377.aspx
A hotfix sounds bit strange, do the folder contain any of the file types that are blocked by the IIS Content filtering? I normally end up allowing .mdb files for instance.
Regards,
Jörgen
-- My System Center blog ccmexec.com -- Twitter @ccmexec
------------------------------------
Reply:
Kev :)
------------------------------------
Reply:
- Edited by Efa77 Monday, October 8, 2012 1:08 PM
------------------------------------
Reply:
Kev :)
------------------------------------
Reply:
------------------------------------
Reply:
Kev :)
------------------------------------
Reply:
- Edited by Efa77 Tuesday, October 9, 2012 4:29 PM
------------------------------------
Sharepoint document migration from wss3.0 to moss2010
Hi,
We have a requirement for migrating documents from wss3.0 to moss2010.
users provide the follwinmg details
WSS3.0 site url http;//wss3.0/sites/web/doclirary
Document name migration.ppt
target moss2010 url http;//moss2010/web1
(metatags) also should be migrate.
we have two environments wss3.0 and moss2010.
can any one please suggest me how can i start this through WCF or web services
Thank you in advace.
Regards,
Prasad.
prboss
Reply:
Hi,
you can do following to achieve your goal.
Option 1:
use standard database detach & attache method
Option 2:
use SPExport and SPImport method/powershell command
thanksArup MCTS - SharePoint
Play Sudoku Online
------------------------------------
Reply:
------------------------------------
Reply:
Hi,
okay, in that case you can do the following.
develop custom webpart to display all documents with export button
secondly, you can add checkbox against each document library item
on click on button you can write the code below which will achieve your goal,
using (SPSite sourceSite = new SPSite(http://YouSourceSite-URL))
{
using (SPWeb sourceWeb = sourceSite.OpenWeb())
{
SPList sourceList = sourceWeb.Lists["Documents"];
SPListItem item = sourceList.GetItemById(id);
using (SPSite destSite = new SPSite("YourDestinationSite-URL"))
{
using (SPWeb destWeb = destSite.OpenWeb())
{
SPFolder destFolder = destWeb.Folders["Documents"];
destWeb.AllowUnsafeUpdates = true;
destFolder.Files.Add(item.File.Name, item.File.OpenBinary(), item.Properties, true);
destFolder.Update();
}
}
}
}
you can also take help the following tool & source code to understand the export & import API.
http://spdeploymentwizard.codeplex.com/
thanksArup MCTS - SharePoint
Play Sudoku Online
- Edited by Arup Biswas Tuesday, August 14, 2012 10:52 AM
------------------------------------
Reply:
HI Arup,
Thanks a lots for your respoce.
Here problum is my source url is wss3.0 server
desitination s is moss2010
Thnak.
prboss
------------------------------------
Reply:
Hi,
If I understood you correctly then you can use server object model for wss3.0 and client object model for MOSS2010.
hope this will help.
thanksArup MCTS - SharePoint
Play Sudoku Online
- Edited by Arup Biswas Tuesday, August 14, 2012 12:00 PM text modified
------------------------------------
Reply:
yes correct,
where i can create that document migration UI in moss2010 or wss3.0
If i cretae that Ui in moss2010 environment how can i call the wss3.0 data.
Still u have any doubt will explain briefly...
thanks bhaya
prboss
------------------------------------
Reply:
hi,
You can create custom page on WSS 3.0 & use server object model to call SharePoint 2010 client object model.
if you create custom page on SharePoint 2010 then call WSS 3.0 web service.
thanksArup MCTS - SharePoint
Play Sudoku Online
------------------------------------
Reply:
Yes now i got it....
But have two questions...
1)If i use server object model for wss 3.0 and client object model for moss2010
in wss3.0 environment.where i can find the dlls for the client object model
(microsoft.sharepoint.client ,,,microsoft.sharepoint.client.runtime)
dlls, we need to deploy that dlls?
2)How can i call call webservices for wss3.0 in sharepoint2010(Need soem example)
Can u please answer me the above two quesation,those will be usefull for my sahrepoint learning...
Thanks a lot.....................................................
prboss
------------------------------------
Reply:
Hi,
you can copy dll for client object model from SharePoint 2010 farm.
helpful link for web service,
http://www.codeproject.com/Articles/39110/MOSS-for-Developers-Part-8-Web-Services
thanksArup MCTS - SharePoint
Play Sudoku Online
------------------------------------
Reply:
Hi,
i am using sahrepoint webservice for getting document from another sahrepoint site.my source server is wss3.0
and my destination server is moss2010.
i wrote code like the below.
WSCopy.Copy copyService = new WSCopy.Copy();
copyService.Url = http://server:8080+ "/_vti_bin/copy.asmx";
copyService.Credentials = CredentialCache.DefaultCredentials;
WSCopy.FieldInformation fieldInfo = new WSCopy.FieldInformation();
WSCopy.FieldInformation[] fieldInfoArray = { fieldInfo };
WSCopy.CopyResult cResult1 = new WSCopy.CopyResult();
WSCopy.CopyResult cResult2 = new WSCopy.CopyResult();
WSCopy.CopyResult[] cResultArray = { cResult1, cResult2 };
byte[] fileContents = new Byte[4096];
copyService.GetItem( "http://server:8080/shareddocuments/sample.doc" , out fieldInfoArray, out fileContents);
return fileContents;
this is the logic i am using
HERE IS THE PROBLEM;
THE above code is working fine in the devlopment server when i am deploye the same in the production is is not working
and it is giveing a error messaeg like. unable to connect to the remote server.
only difference is am giving the url like http://boss.companyname.com
http://boss.companyname.com"/_vti_bin/copy.asmx is getting opend in browser also. please let me know if i did any thing wrong,.
any one can u please help me on this.
prboss
------------------------------------
Reply:
Hi,
i am using sahrepoint webservice for getting document from another sahrepoint site.my source server is wss3.0
and my destination server is moss2010.
i wrote code like the below.
WSCopy.Copy copyService = new WSCopy.Copy();
copyService.Url = http://server:8080+ "/_vti_bin/copy.asmx";
copyService.Credentials = CredentialCache.DefaultCredentials;
WSCopy.FieldInformation fieldInfo = new WSCopy.FieldInformation();
WSCopy.FieldInformation[] fieldInfoArray = { fieldInfo };
WSCopy.CopyResult cResult1 = new WSCopy.CopyResult();
WSCopy.CopyResult cResult2 = new WSCopy.CopyResult();
WSCopy.CopyResult[] cResultArray = { cResult1, cResult2 };
byte[] fileContents = new Byte[4096];
copyService.GetItem( "http://server:8080/shareddocuments/sample.doc" , out fieldInfoArray, out fileContents);
return fileContents;
this is the logic i am using
HERE IS THE PROBLEM;
THE above code is working fine in the devlopment server when i am deploye the same in the production is is not working
and it is giveing a error messaeg like. unable to connect to the remote server.
only difference is am giving the url like http://boss.companyname.com
http://boss.companyname.com"/_vti_bin/copy.asmx is getting opend in browser also. please let me know if i did any thing wrong,.
any one can u please help me on this.
prboss
------------------------------------
unable to connect to the remote server web service sharepoint
Hi,
i am using sahrepoint webservice for getting document from another sahrepoint site.my source server is wss3.0
and my destination server is moss2010.
i wrote code like the below.
WSCopy.Copy copyService = new WSCopy.Copy();
copyService.Url = http://server:8080+ "/_vti_bin/copy.asmx";
copyService.Credentials = CredentialCache.DefaultCredentials;
WSCopy.FieldInformation fieldInfo = new WSCopy.FieldInformation();
WSCopy.FieldInformation[] fieldInfoArray = { fieldInfo };
WSCopy.CopyResult cResult1 = new WSCopy.CopyResult();
WSCopy.CopyResult cResult2 = new WSCopy.CopyResult();
WSCopy.CopyResult[] cResultArray = { cResult1, cResult2 };
byte[] fileContents = new Byte[4096];
copyService.GetItem( "http://server:8080/shareddocuments/sample.doc" , out fieldInfoArray, out fileContents);
return fileContents;
this is the logic i am using
HERE IS THE PROBLEM;
THE above code is working fine in the devlopment server when i am deploye the same in the production is is not working
and it is giveing a error messaeg like. unable to connect to the remote server.
only difference is am giving the url like http://boss.companyname.com
http://boss.companyname.com"/_vti_bin/copy.asmx is getting opend in browser also. please let me know if i did any thing wrong,.
any one can u please help me on this.
prboss
unable to connect to the remote server web service sharepoint
Hi,
i am using sahrepoint webservice for getting document from another sahrepoint site.my source server is wss3.0
and my destination server is moss2010.
i wrote code like the below.
WSCopy.Copy copyService = new WSCopy.Copy();
copyService.Url = http://server:8080+ "/_vti_bin/copy.asmx";
copyService.Credentials = CredentialCache.DefaultCredentials;
WSCopy.FieldInformation fieldInfo = new WSCopy.FieldInformation();
WSCopy.FieldInformation[] fieldInfoArray = { fieldInfo };
WSCopy.CopyResult cResult1 = new WSCopy.CopyResult();
WSCopy.CopyResult cResult2 = new WSCopy.CopyResult();
WSCopy.CopyResult[] cResultArray = { cResult1, cResult2 };
byte[] fileContents = new Byte[4096];
copyService.GetItem( "http://server:8080/shareddocuments/sample.doc" , out fieldInfoArray, out fileContents);
return fileContents;
this is the logic i am using
HERE IS THE PROBLEM;
THE above code is working fine in the devlopment server when i am deploye the same in the production is is not working
and it is giveing a error messaeg like. unable to connect to the remote server.
only difference is am giving the url like http://boss.companyname.com
http://boss.companyname.com"/_vti_bin/copy.asmx is getting opend in browser also. please let me know if i did any thing wrong,.
any one can u please help me on this.
prboss
ISA to ISA IPSec Tunnel - Hosts above certain range can't communicate ?
ISA server A
Internal range 9.4.0.0 /24
External >< External with ISA server B Internal range 9.5.0.0
Clients on the inside of ISA B that have ip's over 100 - eg 9.5.0.100 can't ping or browse hosts behind ISA A on the 9.4.0.0 network ?
Anything below 100 work fine. Clients on the 9.5.0.0 network just use their default gateway (the inside interface of ISA B) to connect.
Any ideas ?
I'm guessing something in the routing table, but can't see anything obvious ? in ISA the internal network addresses on the VPN for both ISA boxes run 9.5.0.0-9.5.0.254 and 9.4.0.0-9.4.0.254.
James Reeve
- Changed type Nick Gu - MSFTModerator Tuesday, October 9, 2012 2:39 AM
Reply:
Hi,
Thank you for the post.
How do you define the static pool for VPN network? What is live logging tell when the host 9.5.0.100 access the host behind ISA A network?
Regards,
Nick Gu - MSFT
------------------------------------
Reply:
Hi Nick
Will check out the live logging and see what happens. This is a site to site vpn between one 2004 and one 2006 version of ISA server.
It's created as a network so no address pool. Coming from a Cisco angle should the address ranges include .255 and not just end at 254?
thanks
James
James Reeve
------------------------------------
TROUBLESHOOTING: FIM CM: 400 errors from the Bulk Issuance Client
TROUBLESHOOTING: FIM CM: 400 errors from the Bulk Issuance Client
Tim Macaulay Security Identity Support Team Support Escalation Engineer
Custom Display form Version History Problem
Hi,
In Custom Display form, when we select earlier versions of list items in Custom List Form, it is still displaying the latest version irrespective of selected one. But in the default list form, its working fine (displaying the selected version of list item).
Any idea to get rid of this issue?
Regards,
Venu
Venugopala Reddy, SharePoint Developer
Reply:
Hi,
this seams like you have a problem with your property binding in the custom display form. Can you please post the code that your custom display form use?
Kind regards
Stefan
http://www.n8d.at/blog
Follow me on Twitter: StFBauer | n8design
MCTS - SharePoint / WSS Configuration and Development
------------------------------------
Content query webpart in a page layout with filter based on metadata field
Hi,
I am creating a page layout in SharePoint Designer 2010. I need to have a content query webpart here where the data can be filtered based on a metadata column, but I am not able to do so.
Could anyone please help me to achieve this.
Regards,
Pranav Khare
Regards, Pranav Khare
Reply:
Hi,
is the field multivalue or single valued ?
I think there is a problem that mutli values are not supported. If you like to use multivalue fields to filter you might go for the Enterprise Keywords this supports the filtering using multi value.
Kind regard
Stefan
http://www.n8d.at/blog
Follow me on Twitter: StFBauer | n8design
MCTS - SharePoint / WSS Configuration and Development
------------------------------------
Not able to create External Content Type in sharepoint designer on HTTPS enabled site
Hi Team ,
I am not able to create Extenal content type using sharepoint designer 2010 in https enabled site.
Whenever I click on External Content Type option in Sharepoint Designer Ribbon I get below message.
"There was no endpoint listening at https://ServerName:Port/_Vti_bin/BDCAdminService.svc that could accept the messge .this often caused by an incorrect address or SOAPaction.see InnerException,If Present,For more details
The remote server returned and error :(502) Bad Gateway"
But If I open a http site(Where secured Socket layer is not installed) in Sharepoint designer and try the creation of external content type it works fine .
any thoughts regarding this would be helpful.
ragava_28
- Edited by Raghu Vayu Nandana K Wednesday, August 29, 2012 1:28 PM
Reply:
Hi,
are you able to check if ssl is configure correctly. Normally this shouldn't be a problem if you use HTTP or HTTPS. Have you tried to open the URL to the service in a normal browser?
You should also check out the following blog post.
http://blogs.msdn.com/b/sowmyancs/archive/2010/02/12/how-to-enable-ssl-on-a-sharepoint-web-application.aspx
kind regards
Stefan
http://www.n8d.at/blog
Follow me on Twitter: StFBauer | n8design
MCTS - SharePoint / WSS Configuration and Development
------------------------------------
people picker not fetch updated information in sharepoint 2010?
Hello,
In share point server 2010, people picker is not fetching updated information from active directory.this happen only for one share point site/web not for another share point site/web . why this is so?
any help will be appreciate able.
Thanks,
Lovkesh Patel
Reply:
Hi Lovkesh Patel,
Please check whether Active directory users has been assigned Site/web permissions. If not, please provide permissions to Active directory users following below steps:
- Go to Site Actions
- Site permissions
- Select Grant permissions
- Select users/groups whom you want to grant permissions
- Select grant permission directly(radiobutton)
- Provide appropriate permissions
Please let me know if you need further help on same.
Thanks,
Paras Sanghani
http://parassanghani.blogspot.com/
Mark As Answer if it helped you.
------------------------------------
Reply:
we have already added in both site as administrator.when selecting her from a people picker her title display in both site with different values. One site fetch old information and another site fetch updated information.
Thanks
Lovkesh Patel
------------------------------------
Reply:
Hello Lovkesh Patel,
Please review the below link:
Hope it helps you. Please let me know if you need further help.
Thanks,
Paras Sanghani
http://parassanghani.blogspot.com/
Mark As Answer if it helped you.
------------------------------------
Reply:
Thanks you for reply,
That problem occurs with one users only.We are getting information updated information of another users. Particular user is not synchronized.
Thanks you,
Lovkesh patel
------------------------------------
User name you entered does not have permission to use self service password reset - following update 2 or 3
username = "username" and domain = "domain"
In update 2 (and update 3) the "domain" textbox has been removed and there is just the username textbox, which requires (at least in my configuration) the domain to be pre-pended to the username "domain\username" rather than just "username"
username = "domain\username"
If you had SSPR working and upgraded to Update 2 or 3 you may need to change the way you enter the username or you will get the error above. This took me a while to work out.
Reply:
The reason for this change is that the same textbox will now support UPN. That's a DCR we took.
In post RTM, we are going to add example on that page so users will have a better idea on what to type there.
The FIM Password Reset Blog http://blogs.technet.com/aho/
------------------------------------
Reply:
------------------------------------
Reply:
I am having the same issue, so i want to customize the page to show an example to my users since we are a multi domain setup. the problem I have is that I cannot seem to be able to customize the password portal page. Does anyone have any examples that they can share?
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
I had the same problem, only get the username box, use this format
Domain name \ username and it launch the QA Window.
------------------------------------
SCCM 2007 r3 - OSD error 0x80072efe
Hello,
I am getting an error 0x80072efe when I try and load a computer off of my primary server. I look at the c:\windows\temp\PXEBootFiles the folder is empty, unlike other servers, by the way this was working. The errors in the smspxe.log indicate that there is not enough system resources. here is a snip of the logs.
Failed to read PXE settings.
The system cannot find the file specified. (Error: 80070002; Source: Windows) smspxe 10/8/2012 3:16:35 PM 5676 (0x162C)
Failed to read PXE settings.
The system cannot find the file specified. (Error: 80070002; Source: Windows) smspxe 10/8/2012 3:16:35 PM 5676 (0x162C)
Found new image SMSPKG\RC100001 smspxe 10/8/2012 3:16:36 PM 5676 (0x162C)
Opening image file F:\RemoteInstall\SMSImages\SMSPKG\RC100001\boot.RC100001.wim smspxe 10/8/2012 3:16:37 PM 5676 (0x162C)
Failed to read PXE settings.
The system cannot find the file specified. (Error: 80070002; Source: Windows) smspxe 10/8/2012 3:16:37 PM 5676 (0x162C)
Found Image file: F:\RemoteInstall\SMSImages\SMSPKG\RC100001\boot.RC100001.wim
PackageID: SMSPKG\RC100001
ProductName: Microsoft® Windows® Operating System
Architecture: 0
Description: Microsoft Windows PE (x86)
Version:
Creator:
SystemDir: WINDOWS
smspxe 10/8/2012 3:16:37 PM 5676 (0x162C)
Closing image file F:\RemoteInstall\SMSImages\SMSPKG\RC100001\boot.RC100001.wim smspxe 10/8/2012 3:16:37 PM 5676 (0x162C)
Mutex was not owned. Now have ownership. smspxe 10/8/2012 3:16:37 PM 5676 (0x162C)
Opening image file F:\RemoteInstall\SMSImages\SMSPKG\RC100001\boot.RC100001.wim smspxe 10/8/2012 3:16:38 PM 5676 (0x162C)
Applying image 1 to volume C:\WINDOWS\TEMP\PXEBootFiles smspxe 10/8/2012 3:16:38 PM 5676 (0x162C)
WIM retry: C:\WINDOWS\TEMP\PXEBootFiles\WIM18F.tmp (0x800705AA) smspxe 10/8/2012 3:16:38 PM 5676 (0x162C)
Unable to load volume image 1 (0x800705AA) smspxe 10/8/2012 3:16:41 PM 5676 (0x162C)
Closing image file F:\RemoteInstall\SMSImages\SMSPKG\RC100001\boot.RC100001.wim smspxe 10/8/2012 3:16:41 PM 5676 (0x162C)
Warning: Failed to copy the needed boot binaries from the boot image F:\RemoteInstall\SMSImages\SMSPKG\RC100001\boot.RC100001.wim.
Insufficient system resources exist to complete the requested service. (Error: 800705AA; Source: Windows) smspxe 10/8/2012 3:16:41 PM 5676 (0x162C)
Found new image SMSPKG\RC100002 smspxe 10/8/2012 3:16:42 PM 5676 (0x162C)
Opening image file F:\RemoteInstall\SMSImages\SMSPKG\RC100002\boot.RC100002.wim smspxe 10/8/2012 3:16:42 PM 5676 (0x162C)
Failed to read PXE settings.
The system cannot find the file specified. (Error: 80070002; Source: Windows) smspxe 10/8/2012 3:16:42 PM 5676 (0x162C)
Found Image file: F:\RemoteInstall\SMSImages\SMSPKG\RC100002\boot.RC100002.wim
PackageID: SMSPKG\RC100002
ProductName: Microsoft® Windows® Operating System
Architecture: 9
Description: Microsoft Windows PE (x64)
Version:
Creator:
SystemDir: WINDOWS
smspxe 10/8/2012 3:16:42 PM 5676 (0x162C)
Closing image file F:\RemoteInstall\SMSImages\SMSPKG\RC100002\boot.RC100002.wim smspxe 10/8/2012 3:16:42 PM 5676 (0x162C)
Mutex was not owned. Now have ownership. smspxe 10/8/2012 3:16:42 PM 5676 (0x162C)
Opening image file F:\RemoteInstall\SMSImages\SMSPKG\RC100002\boot.RC100002.wim smspxe 10/8/2012 3:16:43 PM 5676 (0x162C)
Applying image 1 to volume C:\WINDOWS\TEMP\PXEBootFiles smspxe 10/8/2012 3:16:43 PM 5676 (0x162C)
WIM retry: C:\WINDOWS\TEMP\PXEBootFiles\WIM194.tmp (0x800705AA) smspxe 10/8/2012 3:16:43 PM 5676 (0x162C)
Unable to load volume image 1 (0x800705AA) smspxe 10/8/2012 3:16:46 PM 5676 (0x162C)
Closing image file F:\RemoteInstall\SMSImages\SMSPKG\RC100002\boot.RC100002.wim smspxe 10/8/2012 3:16:46 PM 5676 (0x162C)
Warning: Failed to copy the needed boot binaries from the boot image F:\RemoteInstall\SMSImages\SMSPKG\RC100002\boot.RC100002.wim.
Insufficient system resources exist to complete the requested service. (Error: 800705AA; Source: Windows) smspxe 10/8/2012 3:16:46 PM 5676 (0x162C)
PXE Provider finished loading. smspxe 10/8/2012 3:16:47 PM 5676 (0x162C)
I have put a ticket in with Microsoft but they have a 1-4 hours turn around, just to call back. Wondering if someone else has any thoughts on what I can do. I did the following :
Stopped WDS, deleted %systemroot%\temp\PXEBootImages and followed Microsoft blog to uninstall PXE, delete files (PXEBootFiles and another that isnt recreating itself) and the SMSImages$, remove WDS and reinstall. I am still unable to PXE and it doesnt appear that the boot images are being copied to a location they should be. I have verified that both are distributed to the server.
Reply:
------------------------------------
Reply:
------------------------------------
What is the best way to find out if a driver is present in the boot image/configmgr driver store?
Hi,
I have been facing this problem on client machine while creating the driver package for the model in ConfigMgr 2007 SP2. What is the best method to find that a specific driver(Win XP in this case) is already present in the driver store of configmgr or the boot image(mass storage/network) used for PXE booting?The WIN PE boot image version is 3.0.The laptop in question is a Dell Latitude E6230.
Reply:
In the ConfigMgr console, the Drivers tab of the boot image's properties dialog will show you all drivers. Note that WinPE 3.0 is based on Windows 7 and so you should only inject Windows 7 drivers into these boot images regardless of the OS that you are deploying.
To view the drivers in the drivers store, simply go to the Drivers node under OSD in the console.
Jason | http://blog.configmgrftw.com
------------------------------------
Reply:
Thanks for your reply Jason,an additional query,How to confirm during the OSD for a model,that the boot image is missing the network drivers needed for installation?
How to check that the right mass storage 'Driver & its corresponding model' is selcted in the task for the computer model,from tha task sequence?
------------------------------------
Reply:
Trial & error for both.
Note that the mass storage driver selection is only valid and applicable if you are deploying XP. For Win Vista and above, there is no need to specifically choose mass storage drivers as the driver methodology for boot critical devices changed with Vista.
If you are so unlucky to still be deploying XP, here's an older post to start you out with mass storage drivers: http://myitforum.com/cs2/blogs/rzander/archive/2009/08/07/apply-xp-massstorage-drivers-from-sccm-osd-task-sequence.aspx
Jason | http://blog.configmgrftw.com
------------------------------------
Reply:
For checking the network driver presence,is using 'F8>cmd pompt>ipconfig' the right way?
If so could you let me know of such a method for checking the mass storage drivers as well?
------------------------------------
Reply:
yes, you could use F8 to check.
a) use F8 to open a console prompt
b) execute diskpart
c) list disk
if diskpart shows disk, then the storage controller is visible and you should be able to list partitions, create partitions.
if this works, then OSD should be able to do the same.
Don
(Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)
------------------------------------
Reply:
------------------------------------
MDT doesn't install appications from network share
Hi,
MDT doesn't install appications from network share but with one expection Office 2007, which is installed from different server.
If I copy the Adobe reader, flash and other msi files to DeploymentShare on MDT machine it works.
Does someone knows what could be the problem ?
Thanks.
Reply:
Why do you use another network location, and not the option to embed application source files into the deploymentshare?
This means you need to work around something that ideally works perfect. MDT offers applications from with the deploymentshare, which works with absolute and relative paths like".\Applications, %DEPLOYROOT% and %SCRIPTROOT%. Going beyond the boundaries of the MDT folders needs a closer look on how the applications are advertised. So please post a screenshot of an application detailed pane. So we can see which installpatch you have used.
Is there a reason why you chose to leave application source files out of the deploymentshare? MDT's impact on a server is very low, because it is only files and scripts. No services or other things are involved using MDT. It can practically be used on every machine which has enough disk capacity / throuhput and network IO available. So my suggestion is to use MDT the way it is supposed to.
The only scenario I can imagine using applications without source files is if I wanted to use the same application source twice, for instance installing Office 2010 with multiple MSP files for multiple customers or different installations.
edit: also this should have been a question, instead of a discussion.
Keep us posted, and if helpful please rate! Kind regards
- Edited by Rens H Monday, October 8, 2012 1:22 PM
------------------------------------
Reply:
MDT will need credentials to connect to other network shares.
Create a service account that has access to the network shares then add the credentials to the customsettings.ini like in this example:
UserID=Andrew
UserDomain=ScriptimusExMachina
UserPassword=HardPassw0rd!
Blog: http://scriptimus.wordpress.com
------------------------------------
Reply:
- Edited by Marek81 Tuesday, October 9, 2012 5:24 AM
------------------------------------
Reply:
Hi,
well I want to use the apps without source file that I got all installations [ Office, other SW ] on other server and I don't want to have it duplicated on two places.
100% the problems are credetials. If I put same LOCAL PC administrator PW as is on server [ where the apps are ] all installation works without problems [ I test it today ]. But what If I want to configure different credentials to install the apps from MDT ? How to configure it and thats the problem ?
------------------------------------
Reply:
the user id being used for the lite touch deployment also needs to have access to the share where you have your application installs.
------------------------------------
how to pass multiple field value as parameter to subreport in ssrs 2008
Hi All,
I have a report which have Region as group. and have a sub-report which has Region has parameter.
Case Region Sale discount
sps Global 400 10
Americas 200 0
Europe 500 0
bmw Global 300 2
Asia 200 20
below this i have a sub report with parameters CAse and Region
i need to pass region for each case from the main table to the sub-report.
in subreport properties in parameter tab i have give
CaseRegion as lable and value as ="[CAse].[Case Region].&[" + fields!Case_Region.Value +"]"
but it throws error.
Please help!
Thanks & Regards, Chaitali Thaker
Reply:
Hello,
Take a look on this link How to pass TSQL parameter to MDX report
blog:My Blog/
Hope this will help you !!!
Sanjeewan
- Edited by Sanjeewan Kumar Tuesday, October 9, 2012 8:32 AM
------------------------------------
Reply:
Thanks For the reply Sanjeewan.
But my issue is in my cube the value for region is in nos.
e.g. [Case].[Case Region].&[22]
and display value is Americas
how can i pass the nos. as parameters then? coz in my query
select [Case].[Case Region].members on rows
from Master
output i get is Americas,Europe etc..
and in my subreport when i pass it as parameters i need to pass as 22,32 etc.
how can i achieve this?
Thanks & Regards, Chaitali Thaker
------------------------------------
Reply:
Hi,
1. Either you create TSQl like
Select Region ID , Region name from {your table } and create a dataset and map it with main data set follow the link same is done there
or
if you want in MDX only then
Create a calculated like
Member Test as [Case].[Case Region].currentmember.Uniquename , Now create a field in your report with this calculated member name in rdl and pass this field . if you are going to pass multiple value then you have to use generate function . but proble with this it does not refresh when using as cascading parameter. in my point of view if possible use TSQl Query to pass parameter
blog:My Blog/
Hope this will help you !!!
Sanjeewan
- Edited by Sanjeewan Kumar Tuesday, October 9, 2012 10:09 AM
------------------------------------
help
how do I get my wifi password i cannot sign on my other devices that are connected but like my iphone is new and trying to set up my honme wifi it keeps saying wrong password. is ther a wauy to find it or change it??? please help thanks Christy
- Edited by ChristyBowman2530 Tuesday, October 9, 2012 7:11 AM
- Changed type ChristyBowman2530 Tuesday, October 9, 2012 7:13 AM i cant log into my iphone with my home Wi-Fi, its says wrong password how do i find it on my ccomputer or change it???? please i could really use your help it charges my phone alot when it shoud be free at home
- Moved by Mike Kinsman Tuesday, October 9, 2012 9:50 AM off topic (From:TechNet Website Feedback)
Reply:
Your wifi password may be stored on other devices you use to connect to the wifi, but if nothing else you can just restore your wifi router in your home to factory settings and go through the setup process for it again, which will give it a new wifi password. Documentation for your wifi router should cover this, and if you dont still have it you can probably find it online. Good luck!
Unfortunately your post is off topic here, in the TechNet Site Feedback forum, because it is not Feedback about the TechNet Website or Subscription.
You may want to try asking your question at http://answers.microsoft.com.
For more information about where to post your question please see this thread: http://social.technet.microsoft.com/Forums/en-US/tnfeedback/thread/24ee65e4-0f35-403c-9bf7-41333cd13cb5
Because it is off topic, I'm moving it to the off topic forum.
Thanks, Mike
MSDN and TechNet Subscriptions Support
Read the Subscriptions Blog!
------------------------------------
I would like to make sure GALsync target.
I would like to make sure GALsync setting.
1.
GALsync target is objects which exist in ConfigureDirectoryPartition container OU,and SelectObjectType selected object.(contact object may also be included ??)
2.
ConfigureGAL,target is OU which contact object is created from Other MA import & sync.
3.
Container with authoritative contact is OU which include contacts to be distributed to Other MAs from this MA.
4.
ConfigureDirectoryPartition container OU need to include ConfigureGAL target OU.
It is my understanding now. Is it correct ?
I am not sure about contact object in ConfigureDirectoryPartition container and Container with authoritative contact .(if ConfigureDirectoryPartition container include contact object , it is not sync target if it is not authoritative contact ? )
- Edited by yuuichiro99 Tuesday, October 9, 2012 8:56 AM
- Changed type Markus VilcinskasMicrosoft employee Saturday, May 25, 2013 12:09 AM
No comments:
Post a Comment