WDS - Getting Multiple Images working
I've been using one image on my WDS server for a while now, but the time has come where I need to add a second image to the server.
My current image is fully unattended and uses a autounattend.xml to do all the tricks. The trouble I have is that the unattended file is on the main server config. If I try to attach it to the image itself I get a "This image version doesn't support adding an unattended setup file using this method" error.
This means that to use the other image, I have to tell the server which .xml to look at BEFORE I start to build those machines.
I'd like to be able to have multiple images, all with Unattended files which can be selected from the workstation via te PE Image Selection (which I have yet to see!) not the server.
Any ideas what I need to change?
Here is the unattended that is attached on the server...
Quote:
<?xml version="1.0" ?>
<unattend xmlns="urnchemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86">
<WindowsDeploymentServices>
<Login>
<WillShowUI>OnError</WillShowUI>
<Credentials>
<Username>administrator</Username>
<Domain>ourdomain</Domain>
<Password>domainpassword</Password>
</Credentials>
</Login>
<ImageSelection>
<WillShowUI>OnError</WillShowUI>
<InstallImage>
<Filename>Habs Standard XP Image.wim</Filename>
<ImageGroup>XP Images</ImageGroup>
<ImageName>Habs Standard XP Image</ImageName>
</InstallImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionID>
</InstallTo>
</ImageSelection>
</WindowsDeploymentServices>
<DiskConfiguration>
<WillShowUI>OnError</WillShowUI>
<Disk>
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<CreatePartitions>
<CreatePartition>
<Extend>true</Extend>
<Type>Primary</Type>
<Order>1</Order>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<ModifyPartition>
<Order>1</Order>
<PartitionID>1</PartitionID>
<Format>NTFS</Format>
<Letter>C</Letter>
<Label>System</Label>
</ModifyPartition>
</ModifyPartitions>
</Disk>
</DiskConfiguration>
</component>
</settings>
</unattend>
Re: WDS - Getting Multiple Images working
If I take away all the unattended files I get the GUI to select the image on the clients, but it says there are no images available :(