Hi,
Im trying to install Windows 7 Enterprise through WDS on a client machine.
The setup runs fine, but the machine does not join the domain or creates a local user account.
(The setup asks for all theese questions) its like my XML file does not apply.
This is my Unattended.xml (Applied in the WDS Server properties on the Client tap)
<?xml version="1.0" ?>
<unattend xmlns="urn:schemas-microso
ft-com:una
ttend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-Se
tup" publicKeyToken="31bf3856ad
364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86
">
<WindowsDeploymentServices
>
<ImageSelection>
<WillShowUI>OnError</WillS
howUI>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionI
D>
</InstallTo>
</ImageSelection>
</WindowsDeploymentService
s>
<DiskConfiguration>
<Disk>
<ModifyPartitions>
<ModifyPartition>
<Active>true</Active>
<Extend>false</Extend>
<Format>NTFS</Format>
<Label>System</Label>
<Letter>C</Letter>
<Order>1</Order>
<PartitionID>1</PartitionI
D>
</ModifyPartition>
</ModifyPartitions>
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWi
peDisk>
<CreatePartitions>
<CreatePartition>
<Order>1</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
</Disk>
<WillShowUI>OnError</WillS
howUI>
</DiskConfiguration>
</component>
</settings>
</unattend>
And this is my ImageUnattended.xml (applied in WDS on my Image):
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microso
ft-com:una
ttend">
<settings pass="specialize">
<component name="Microsoft-Windows-Un
attendedJo
in" processorArchitecture="x86
" publicKeyToken="31bf3856ad
364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance">
<Identification>
<UnsecureJoin>false</Unsec
ureJoin>
<Credentials>
<Domain>mydomain.local</Do
main>
<Password>mypassword</Pass
word>
<Username>administrator</U
sername>
</Identification>
</component>
<component name="Microsoft-Windows-Sh
ell-Setup"
processorArchitecture="x86
" publicKeyToken="31bf3856ad
364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance">
<ComputerName>%MACHINENAME
%</Compute
rName>
</component>
</settings>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Se
tup" processorArchitecture="x86
" publicKeyToken="31bf3856ad
364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance">
<UserData>
<ProductKey>
<WillShowUI>OnError</WillS
howUI>
<Key>mykey</Key>
</ProductKey>
<AcceptEula>true</AcceptEu
la>
<FullName>*</FullName>
<Organization>myOrg</Organ
ization>
</UserData>
</component>
</settings>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Sh
ell-Setup"
processorArchitecture="x86
" publicKeyToken="31bf3856ad
364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance">
<BluetoothTaskbarIconEnabl
ed>true</B
luetoothTa
skbarIconE
nabled>
<RegisteredOrganization>my
Org</Regis
teredOrgan
ization>
<RegisteredOwner>myOrg</Re
gisteredOw
ner>
<ShowWindowsLive>false</Sh
owWindowsL
ive>
<TimeZone>W. Europe Standard Time</TimeZone>
<OOBE>
<SkipUserOOBE>true</SkipUs
erOOBE>
<SkipMachineOOBE>true</Ski
pMachineOO
BE>
<NetworkLocation>Work</Net
workLocati
on>
<HideWirelessSetupInOOBE>t
rue</HideW
irelessSet
upInOOBE>
<HideEULAPage>true</HideEU
LAPage>
</OOBE>
<UserAccounts>
<AdministratorPassword>
<Value>adminpassword</Valu
e>
<PlainText>false</PlainTex
t>
</AdministratorPassword>
</UserAccounts>
</component>
</settings>
<settings pass="auditSystem">
<component name="Microsoft-Windows-Sh
ell-Setup"
processorArchitecture="x86
" publicKeyToken="31bf3856ad
364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance">
<UserAccounts>
<AdministratorPassword>
<Value>adminpassword</Valu
e>
<PlainText>false</PlainTex
t>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>mypassword</Value>
<PlainText>false</PlainTex
t>
</Password>
<Name>helpdesk</Name>
<Group>Administrators</Gro
up>
<DisplayName>HelpDesk</Dis
playName>
<Description>IT HelpDesk</Description>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
</component>
</settings>
</unattend>
Any suggestions?