Sysprep.xml issues

G

Guest

I have created sysprep.xml using WAIK and it seems to work partially. I am
able to set the system for autologon. I

Here is the oobe section of my unattend.xml file. I have specified the
NetworkLocation "WORK" but sysprep does not pass on the settings when system
reboots.
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Work</NetworkLocation>
<SkipMachineOOBE>true</SkipMachineOOBE>
<SkipUserOOBE>true</SkipUserOOBE>
<ProtectYourPC>1</ProtectYourPC>
</OOBE>

If I have False for SkipMachineOOBE the sysprep crashes out with error.
Also, how can you turn off the Phishing settings. I turn it off before
running sysprep.

Thanks
-Jesse
 
S

Steve Maser

Jesse said:
I have created sysprep.xml using WAIK and it seems to work partially. I am
able to set the system for autologon. I

Here is the oobe section of my unattend.xml file. I have specified the
NetworkLocation "WORK" but sysprep does not pass on the settings when system
reboots.

This is a bug (er, "known issue").

You have to add this to your unattend file:

<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup"
processorArchitecture="x86" publicKeyToken="31bf3856ad364e35"
language="neutral" versionScope="nonSxS"
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ComputerName>VISTA-TEST</ComputerName>
</component>
<component name="Microsoft-Windows-Deployment"
processorArchitecture="x86" publicKeyToken="31bf3856ad364e35"
language="neutral" versionScope="nonSxS"
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Description>NetworkList</Description>
<Order>1</Order>
<WillReboot>OnRequest</WillReboot>
<Path>reg add
"HKLM\SOFTWARE\Policies\Microsoft\Windows
NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t
REG_DWORD /d 00000000 /f</Path>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>


(assuming my posting software doesn't mess with the linewraps -- the
"reg add "HKLM|..." line is the one you need to add. You can easily
use the WAIK to do this...

- Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top