When building a catalog file against a image file in WAIK, does it need to be the image you intend to deploy? I have a unattend.xml answer file created in SIM, for WDS. I originally had a problem with it asking for locale and credentials for connecting to WDS. I rebuilt the catalog file to a different image and answer file. Now it does not go past the disk configuration part of windowsPE. I want it to have two partitions 100meg and the rest of the disk on the other partition. It needs to automate all answers until the image installs with the client unattend file.
<?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>
- <Disk wcm:action="add">
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
- <ModifyPartitions>
- <ModifyPartition wcm:action="add">
<Active>true</Active>
<Format>NTFS</Format>
<Letter>C</Letter>
<Order>2</Order>
<PartitionID>2</PartitionID>
<Extend>true</Extend>
<Label>system</Label>
</ModifyPartition>
- <ModifyPartition wcm:action="add">
<Format>NTFS</Format>
<Order>1</Order>
<PartitionID>1</PartitionID>
</ModifyPartition>
</ModifyPartitions>
- <CreatePartitions>
- <CreatePartition wcm:action="add">
<Order>1</Order>
<Size>100</Size>
</CreatePartition>
- <CreatePartition wcm:action="add">
<Order>2</Order>
<Type>Primary</Type>
</CreatePartition>
</CreatePartitions>
</Disk>
<WillShowUI>OnError</WillShowUI>
</DiskConfiguration>
<UseConfigurationSet>true</UseConfigurationSet>
<EnableFirewall>false</EnableFirewall>
- <WindowsDeploymentServices>
- <Login>
- <Credentials>
<Domain>Yada</Domain>
<Password>*****</Password>
<Username>install</Username>
</Credentials>
</Login>
- <ImageSelection>
- <InstallImage>
<Filename>WIN7V4.wim</Filename>
<ImageGroup>ImageGroup2</ImageGroup>
<ImageName>WIN7V3</ImageName>
</InstallImage>
- <InstallTo>
<DiskID>0</DiskID>
<PartitionID>2</PartitionID>
</InstallTo>
</ImageSelection>
</WindowsDeploymentServices>
</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>en-US</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>
</component>
</settings>
<cpi:offlineImage cpi:source="wim://waiktech/share/win7v4.5.wim#WIN7V3" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
Ps. Is it unnecessary to use OOBE during sysprep if we're a small company?
Thanks