Jump to content

Vista OPK Help


Recommended Posts

Hey guys, I'm having some issues getting the OPK of Vista Home Basic working for the OEM computers we sell.

Here's my Autounattend.xml

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing></servicing>
<settings pass="windowsPE">
<component name="Microsoft-Windows-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">
<DiskConfiguration>
<WillShowUI>Never</WillShowUI>
<Disk>
<CreatePartitions>
<CreatePartition>
<Order>1</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<ModifyPartitions>
<ModifyPartition>
<Active>true</Active>
<Extend>false</Extend>
<Format>NTFS</Format>
<Label>System</Label>
<Letter>C</Letter>
<PartitionID>1</PartitionID>
<Order>1</Order>
</ModifyPartition>
</ModifyPartitions>
</Disk>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionID>
</InstallTo>
<WillShowUI>OnError</WillShowUI>
<InstallToAvailablePartition>false</InstallToAvailablePartition>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key>KEY</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
<FullName>Owner</FullName>
</UserData>
</component>
<component name="Microsoft-Windows-International-Core-WinPE" 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">
<SetupUILanguage>
<UILanguage>en-US</UILanguage>
</SetupUILanguage>
<InputLocale>0409:00000409</InputLocale>
<UserLocale>en-US</UserLocale>
<UILanguageFallback>en-US</UILanguageFallback>
<UILanguage>en-US</UILanguage>
<SystemLocale>en-US</SystemLocale>
<LayeredDriver>1</LayeredDriver>
</component>
</settings>
<settings pass="oobeSystem">
<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">
<RegisteredOwner>Owner</RegisteredOwner>
<RegisteredOrganization />
<OEMInformation>
<Manufacturer>BUSINESS</Manufacturer>
<Model>Mega Value System</Model>
<SupportPhone>PHONE</SupportPhone>
<SupportURL>SITE</SupportURL>
<Logo>C:\Windows\system32\oemlogo.bmp</Logo>
</OEMInformation>
<VisualEffects>
<FontSmoothing>ClearType</FontSmoothing>
</VisualEffects>
<TimeZone>E. Australia Standard Time</TimeZone>
<OOBE>
<NetworkLocation>Home</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<HideEULAPage>true</HideEULAPage>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
<Display>
<ColorDepth>32</ColorDepth>
<HorizontalResolution>1024</HorizontalResolution>
<VerticalResolution>768</VerticalResolution>
</Display>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-IE-InternetExplorer" 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">
<Window_Title_CN>BUSINESS</Window_Title_CN>
<TrustedSites>http://www.google.com/;http://www.google.com/</TrustedSites>
<Home_Page>http://www.google.com/</Home_Page>
<CompanyName>BUSINESS</CompanyName>
</component>
</settings>
<settings pass="auditUser">
<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">
<Credentials>
<Password>PASS</Password>
<Username>Office</Username>
</Credentials>
<Path>\\server\Software\Vista.bat</Path>
<Order>1</Order>
<Description>Installing applications</Description>
</RunSynchronousCommand>
</RunSynchronous>
<Reseal>
<Mode>Audit</Mode>
</Reseal>
</component>
</settings>
<cpi:offlineImage cpi:source="wim://server/vunattend/install.wim#Windows Vista HOMEBASIC" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

Once this is done with the install it take me to the oobeSystem (I assume) and I setup a default user ("Owner"), Windows Welcome finishes up and we boot into windows. From here I've gathered you then activate Sysprep's audit mode to invoke the auditUser/auditSystem passes. It seems to do this but then fails as there appears to be something wrong with the config.

Basically I was hoping to do something like I do with XP. Boot into windows for the first time in Sysprep. Install applications/drivers all automatically then I hit Reseal and it's then done.

Is this possible?

I tried a few different configs and it also appears: sysprep.exe /generalize [/audit | /oobe] /reboot doesn't actually wipe my first created user?

I've read right through the docs and still haven't wrapped my head around the WAIK and passes. Does anyone have a well explained guide or could point out where I'm going wrong?

Cheers

Link to comment
Share on other sites


You must use and activate the administrator account during audit passes (user and system)

In auditSystem, the built-in administrator account is enabled by the system, and after logging into the system,
the built-in administrator account is disabled during auditUser. This enables you to use audit mode with administrator privileges,
but the next time the computer shuts down, the built-in administrator account will continue to be disabled.
For more information, see Enable and Disable the Built-in Administrator Account.

Here my unattend file.

the system boots in audit mode, when i resceal it by usinf sysprep /oobe, the administrator account is removed, and the end user enters OOBE.

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-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">
<DiskConfiguration>
<WillShowUI>Always</WillShowUI>
</DiskConfiguration>
<UserData>
<ProductKey>
<Key>YFKBB-PQJJV-G996G-VWGXY-2V3X8</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
<FullName></FullName>
<Organization></Organization>
</UserData>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
</OSImage>
</ImageInstall>
<Display>
<ColorDepth>32</ColorDepth>
<RefreshRate>60</RefreshRate>
<HorizontalResolution>1024</HorizontalResolution>
<VerticalResolution>768</VerticalResolution>
</Display>
<UseConfigurationSet>true</UseConfigurationSet>
<EnableFirewall>false</EnableFirewall>
<EnableNetwork>true</EnableNetwork>
</component>
<component name="Microsoft-Windows-International-Core-WinPE" 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">
<SetupUILanguage>
<UILanguage>fr-fr</UILanguage>
</SetupUILanguage>
<InputLocale>1036:0x0000040c</InputLocale>
<SystemLocale>fr-fr</SystemLocale>
<UILanguage>fr-fr</UILanguage>
<UserLocale>fr-fr</UserLocale>
</component>
<component name="Microsoft-Windows-PnpCustomizationsWinPE" 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">
<DriverPaths>
<PathAndCredentials wcm:keyValue="FastTrak_376-378_RAID" wcm:action="add">
<Path>%configsetroot%\Drivers\Storage\FastTrak_376-378_RAID</Path>
</PathAndCredentials>
<PathAndCredentials wcm:keyValue="Promise_SATA378_IDE" wcm:action="add">
<Path>%configsetroot%\Drivers\Storage\Promise_SATA378_IDE</Path>
</PathAndCredentials>
</DriverPaths>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-IE-InternetExplorer" 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">
<BlockPopups>yes</BlockPopups>
<Home_Page>http://www.xxxx.com</Home_Page>
<IEWelcomeMsg>true</IEWelcomeMsg>
<PlaySound>true</PlaySound>
<ShowInformationBar>true</ShowInformationBar>
<CompanyName>xxxx.Com</CompanyName>
<Help_Page>http://www.xxxx.com/alias/contacts.html</Help_Page>
<FavoritesList>
<FavoriteItem wcm:action="add">
<FavTitle>gfdgsdfgsdgs</FavTitle>
<FavURL>http://www.xxxx.com</FavURL>
<FavID>1</FavID>
</FavoriteItem>
</FavoritesList>
<FeedList>
<FeedItem wcm:action="add">
<FeedKey>1</FeedKey>
<FeedURL>http://www.xxxx.com</FeedURL>
<FeedTitle>fgfsdgdsfgsd</FeedTitle>
</FeedItem>
</FeedList>
<SearchScopes>
<Scope wcm:action="add">
<ScopeDefault>true</ScopeDefault>
<ScopeKey>1</ScopeKey>
<ScopeDisplayName>Google.fr</ScopeDisplayName>
<ScopeUrl>http://www.google.fr/search?hl=fr&q={searchTerms}+&meta=</ScopeUrl>
</Scope>
</SearchScopes>
<Window_Title_CN>xxxx.Com</Window_Title_CN>
</component>
<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">
<AutoLogon>
<Password>
<Value>bABkAGwAYwBQAGEAcwBzAHcAbwByAGQA</Value>
<PlainText>false</PlainText>
</Password>
<LogonCount>5</LogonCount>
<Username>Administrator</Username>
<Enabled>true</Enabled>
</AutoLogon>
<OEMInformation>
<Logo>c:\windows\system32\oobe\xxxx\oemlogo.bmp</Logo>
<Manufacturer>xxxx.Com</Manufacturer>
<SupportHours>10h-18h du lundi au vendredi - 10h-16h30 le samedi</SupportHours>
<SupportPhone>416546849</SupportPhone>
<SupportURL>http://www.xxxx.com/alias/contacts.html</SupportURL>
</OEMInformation>
<RegisteredOrganization />
<RegisteredOwner />
<ShowWindowsLive>false</ShowWindowsLive>
<TimeZone>Romance Standard Time</TimeZone>
<StartPanelLinks>
<Link0>%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessories\Notepad.lnk</Link0>
<Link1>%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\maintenance\Backup and Restore Center.lnk</Link1>
<Link2>%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessories\Command Prompt.lnk</Link2>
<Link3></Link3>
</StartPanelLinks>
</component>
<component name="Microsoft-Windows-International-Core" 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">
<InputLocale>1036:0x0000040c</InputLocale>
<UILanguage>fr-fr</UILanguage>
<UILanguageFallback></UILanguageFallback>
<UserLocale>fr-fr</UserLocale>
<SystemLocale>fr-fr</SystemLocale>
</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">
<Path>%systemroot%\System32\reg import %systemroot%\System32\OOBE\xxxx\registre.reg</Path>
<Order>1</Order>
<Description>Reg Tweaks</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>2</Order>
<Path>%systemroot%\System32\cmd /c "rd /S /Q %systemroot%\ConfigSetRoot"</Path>
<Description>Suppression Configsetroot</Description>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
<settings pass="auditSystem">
<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">
<Reseal>
<Mode>Audit</Mode>
<ForceShutdownNow>true</ForceShutdownNow>
</Reseal>
<AuditComputerName>
<MustReboot>true</MustReboot>
<Name>Audit</Name>
</AuditComputerName>
</component>
<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">
<AutoLogon>
<Password>
<Value>bABkAGwAYwBQAGEAcwBzAHcAbwByAGQA</Value>
<PlainText>false</PlainText>
</Password>
<Username>Administrator</Username>
<Enabled>true</Enabled>
<LogonCount>5</LogonCount>
</AutoLogon>
<UserAccounts>
<AdministratorPassword>
<Value>bABkAGwAYwBBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA=</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
</UserAccounts>
<Display>
<ColorDepth>32</ColorDepth>
<DPI>96</DPI>
<HorizontalResolution>1280</HorizontalResolution>
<RefreshRate>60</RefreshRate>
<VerticalResolution>1024</VerticalResolution>
</Display>
<ShowWindowsLive>false</ShowWindowsLive>
</component>
</settings>
<settings pass="oobeSystem">
<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">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Work</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
<RegisteredOwner />
<TimeZone>Romance Standard Time</TimeZone>
<RegisteredOrganization />
<UserAccounts>
<AdministratorPassword>
<Value>bABkAGwAYwBBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA=</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
</UserAccounts>
<VisualEffects>
<FontSmoothing>ClearType</FontSmoothing>
</VisualEffects>
<ShowWindowsLive>false</ShowWindowsLive>
<StartPanelLinks>
<Link0>%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessories\Notepad.lnk</Link0>
<Link1>%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\maintenance\Backup and Restore Center.lnk</Link1>
<Link2>%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessories\Command Prompt.lnk</Link2>
<Link3></Link3>
</StartPanelLinks>
</component>
<component name="Microsoft-Windows-International-Core" 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">
<InputLocale>1036:0x0000040c</InputLocale>
<SystemLocale>fr-fr</SystemLocale>
<UILanguage>fr-fr</UILanguage>
<UserLocale>fr-fr</UserLocale>
</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">
<Reseal>
<Mode>Audit</Mode>
</Reseal>
</component>
<component name="Microsoft-Windows-PerfCenterCPL" 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">
<WindowsExperienceIndexOemInfo>
<Logo>c:\windows\system32\oobe\xxxx\oemlogo.bmp</Logo>
<HardwareUpgradeURL>http://www.xxxx.com</HardwareUpgradeURL>
</WindowsExperienceIndexOemInfo>
</component>
<component name="Microsoft-Windows-Sidebar" 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">
<Gadget2>false</Gadget2>
<Gadget1>false</Gadget1>
<Gadget3>false</Gadget3>
<Gadget4></Gadget4>
<Gadget5></Gadget5>
</component>
<component name="Microsoft-Windows-ehome-reg-inf" 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">
<OEMName>xxxx.com</OEMName>
<OEMLogoUri>file://c:\windows\system32\oobe\xxxx\MCE.png</OEMLogoUri>
</component>
</settings>
</unattend>

The product key is present in the vista DVD (\sources\inf\setup.cfg) , it's a generic unactivable producte key that allows you the install any vista version.

Edited by EmRoD
Link to comment
Share on other sites

hey I got it working better now, using the key you advise it asks me which vista version to install - can this be set to select one automatically?

Where do I actually place my logo? I've currently got in on my USB key in $OEM$ Folders\$$\system32\oemlogo.bmp but it doesn't appear to copy to system32 as suggested?

Cheers

Link to comment
Share on other sites

You should have the $OEM$ folder on the root of your usb key.:

ROOT

$OEM$ <- NOT "$OEM$ Folders" just "$OEM{:content:}quot;

--$1

--$

There are other generic keys tha allows you the pre set the version you want to install :

Business - 4D2XH-PRBMM-8Q22B-K8BM3-MRW4W
BusinessN - 76884-QXFY2-6Q2WX-2QTQ8-QXX44
HomeBasic - RCG7P-TX42D-HM8FM-TCFCW-3V4VD
HomeBasicN - HY2VV-XC6FF-MD6WV-FPYBQ-GFJBT
HomePremium - X9HTF-MKJQQ-XK376-TJ7T4-76PKF
Ultimate - VMCB9-FDRV6-6CDQM-RV23K-RP8F7

post-12584-1170403395_thumb.jpg

Edited by EmRoD
Link to comment
Share on other sites

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing></servicing>
<settings pass="windowsPE">
<component name="Microsoft-Windows-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">
<DiskConfiguration>
<WillShowUI>Never</WillShowUI>
<Disk>
<CreatePartitions>
<CreatePartition>
<Order>1</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<ModifyPartitions>
<ModifyPartition>
<Active>true</Active>
<Extend>false</Extend>
<Format>NTFS</Format>
<Label>System</Label>
<Letter>C</Letter>
<PartitionID>1</PartitionID>
<Order>1</Order>
</ModifyPartition>
</ModifyPartitions>
</Disk>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionID>
</InstallTo>
<WillShowUI>OnError</WillShowUI>
<InstallToAvailablePartition>false</InstallToAvailablePartition>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key>RCG7P-TX42D-HM8FM-TCFCW-3V4VD</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
<FullName>Owner</FullName>
</UserData>
</component>
<component name="Microsoft-Windows-International-Core-WinPE" 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">
<SetupUILanguage>
<UILanguage>en-US</UILanguage>
</SetupUILanguage>
<InputLocale>0409:00000409</InputLocale>
<UserLocale>en-US</UserLocale>
<UILanguageFallback>en-US</UILanguageFallback>
<UILanguage>en-US</UILanguage>
<SystemLocale>en-US</SystemLocale>
<LayeredDriver>1</LayeredDriver>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-IE-InternetExplorer" 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">
<Window_Title_CN></Window_Title_CN>
<TrustedSites>http://www.google.com/;http://www.google.com/</TrustedSites>
<Home_Page>http://www.google.com/</Home_Page>
<CompanyName></CompanyName>
<IEWelcomeMsg>true</IEWelcomeMsg>
</component>
<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">
<OEMInformation>
<Logo>C:\Windows\system32\oobe\oemlogo.bmp</Logo>
<Manufacturer></Manufacturer>
<Model>Mega Value System</Model>
<SupportPhone>0749430284</SupportPhone>
<SupportURL></SupportURL>
</OEMInformation>
</component>
</settings>
<settings pass="auditUser">
<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">
<Credentials>
<Password></Password>
<Username>Office</Username>
</Credentials>
<Path>cmd /C \\server\Software\Vista.bat</Path>
<Order>1</Order>
<Description>Installing applications</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Credentials>
<Password></Password>
<Username>Office</Username>
</Credentials>
<Path>cmd /C "\\server\Windows Vista\Updates\Run Patches.bat"</Path>
<Order>2</Order>
<Description>Installing updates</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Credentials>
<Password></Password>
<Username>Office</Username>
</Credentials>
<Path>cmd /C "\\server\Windows Vista\D946GZIS\Drivers.bat"</Path>
<Order>3</Order>
<Description>Installing drivers</Description>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
<settings pass="oobeSystem">
<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">
<TimeZone>E. Australia Standard Time</TimeZone>
<Display>
<ColorDepth>32</ColorDepth>
<HorizontalResolution>1024</HorizontalResolution>
<VerticalResolution>768</VerticalResolution>
</Display>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Home</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<SkipUserOOBE>false</SkipUserOOBE>
</OOBE>
<VisualEffects>
<FontSmoothing>ClearType</FontSmoothing>
</VisualEffects>
<RegisteredOrganization />
<RegisteredOwner>Owner</RegisteredOwner>
</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">
<Reseal>
<Mode>Audit</Mode>
</Reseal>
</component>
</settings>
<cpi:offlineImage cpi:source="wim://server/vunattend/install.wim#Windows Vista HOMEBASIC" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

Still can't get the logo working. USB key layout is:

\Autounattend.xml

\$OEM$\$$\OOBE\oemlogo.bmp

Only thing I can think is the matter is the Logon part as you have specified Admin to logon. Everything else works fine.

Any ideas?

Edited by colabus
Link to comment
Share on other sites

Your problem lies in the fact that you're missing this statement in <component name="Microsoft-Windows-Setup" ...>

<UseConfigurationSet>true</UseConfigurationSet>

Without this, $OEM$ folder won't be used at all, according to MS.

Link to comment
Share on other sites

hi keul, thanks.. I picked up on that 2am last night lol..

nevertheless I tried it again this morning and it still didn't go. Here's the updated xml.

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing></servicing>
<settings pass="windowsPE">
<component name="Microsoft-Windows-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">
<DiskConfiguration>
<WillShowUI>Never</WillShowUI>
<Disk>
<CreatePartitions>
<CreatePartition>
<Order>1</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<ModifyPartitions>
<ModifyPartition>
<Active>true</Active>
<Extend>false</Extend>
<Format>NTFS</Format>
<Label>System</Label>
<Letter>C</Letter>
<PartitionID>1</PartitionID>
<Order>1</Order>
</ModifyPartition>
</ModifyPartitions>
</Disk>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionID>
</InstallTo>
<WillShowUI>OnError</WillShowUI>
<InstallToAvailablePartition>false</InstallToAvailablePartition>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key>RCG7P-TX42D-HM8FM-TCFCW-3V4VD</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
<FullName>Owner</FullName>
</UserData>
<UseConfigurationSet>true</UseConfigurationSet>
</component>
<component name="Microsoft-Windows-International-Core-WinPE" 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">
<SetupUILanguage>
<UILanguage>en-US</UILanguage>
</SetupUILanguage>
<InputLocale>0409:00000409</InputLocale>
<UserLocale>en-US</UserLocale>
<UILanguageFallback>en-US</UILanguageFallback>
<UILanguage>en-US</UILanguage>
<SystemLocale>en-US</SystemLocale>
<LayeredDriver>1</LayeredDriver>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-IE-InternetExplorer" 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">
<Window_Title_CN>*</Window_Title_CN>
<TrustedSites>http://www.google.com.au/;http://www.*.com.au/</TrustedSites>
<Home_Page>http://www.google.com.au/</Home_Page>
<CompanyName>*</CompanyName>
<IEWelcomeMsg>true</IEWelcomeMsg>
<FavoritesList>
<FavoriteItem wcm:action="add">
<FavTitle>Sarina Office2U</FavTitle>
<FavURL>http://www.*.com.au/</FavURL>
<FavID>1</FavID>
</FavoriteItem>
<FavoriteItem wcm:action="add">
<FavTitle>Google Australia</FavTitle>
<FavURL>http://www.google.com.au/</FavURL>
<FavID>2</FavID>
</FavoriteItem>
</FavoritesList>
</component>
<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>Owner-PC</ComputerName>
<OEMInformation>
<Logo>C:\Windows\System32\OOBE\oemlogo.bmp</Logo>
<Manufacturer>*</Manufacturer>
<Model>Mega Value System</Model>
<SupportPhone>*</SupportPhone>
<SupportURL>http://www.*.com.au/</SupportURL>
</OEMInformation>
<TimeZone>E. Australia Standard Time</TimeZone>
</component>
</settings>
<settings pass="auditUser">
<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">
<Credentials>
<Password>*</Password>
<Username>Office</Username>
</Credentials>
<Path>cmd /C \\server\Software\Vista.bat</Path>
<Order>1</Order>
<Description>Installing applications</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Credentials>
<Password>*</Password>
<Username>Office</Username>
</Credentials>
<Path>cmd /C "\\server\Windows Vista\Updates\Run Patches.bat"</Path>
<Order>2</Order>
<Description>Installing updates</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Credentials>
<Password>*</Password>
<Username>Office</Username>
</Credentials>
<Path>cmd /C "\\server\Windows Vista\D946GZIS\Drivers.bat"</Path>
<Order>3</Order>
<Description>Installing drivers</Description>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
<settings pass="oobeSystem">
<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">
<TimeZone>E. Australia Standard Time</TimeZone>
<Display>
<ColorDepth>32</ColorDepth>
<HorizontalResolution>1024</HorizontalResolution>
<VerticalResolution>768</VerticalResolution>
</Display>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Home</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<SkipUserOOBE>false</SkipUserOOBE>
</OOBE>
<VisualEffects>
<FontSmoothing>ClearType</FontSmoothing>
</VisualEffects>
<RegisteredOrganization />
<RegisteredOwner>Owner</RegisteredOwner>
</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">
<Reseal>
<Mode>Audit</Mode>
</Reseal>
</component>
</settings>
<cpi:offlineImage cpi:source="wim://server/vunattend/install.wim#Windows Vista HOMEBASIC" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

Thanks

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...