Ik zit hier te prusten met Windows Deployment Services op Win2008 in een poging Win7 Pro unattended op een client te gooien. Er lijkt echter een probleem te zijn met de XML files. In het kader van troubleshooten maak ik nu maar gebruik van 1 XML, namelijk de unattended.xml die je toe wijst aan de WDS server (dus geen ImageUnattended).
Hierin staan enkele localization dingen, server logon credentials en disk info. De localization werkt (wordt dus braaf overgeslagen) en zo ook de logon creds (kunnen een image selecteren). Er wordt echter niet automatisch gepartitioneerd. Elke keer komt dit scherm terug en wanneer ik dan handmatig doe verloopt de rest van de installatie ook goed.
Het probleem zal dus zitten in de XML file, maar ik kan eigenlijk geen fouten ontdekken. Dit is 1 van de XML files die ik getest heb.
Hierin staan enkele localization dingen, server logon credentials en disk info. De localization werkt (wordt dus braaf overgeslagen) en zo ook de logon creds (kunnen een image selecteren). Er wordt echter niet automatisch gepartitioneerd. Elke keer komt dit scherm terug en wanneer ik dan handmatig doe verloopt de rest van de installatie ook goed.
Het probleem zal dus zitten in de XML file, maar ik kan eigenlijk geen fouten ontdekken. Dit is 1 van de XML files die ik getest heb.
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| <?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"> <CreatePartitions> <CreatePartition wcm:action="add"> <Extend>true</Extend> <Order>1</Order> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>Windows</Label> <Letter>C</Letter> <Order>1</Order> <PartitionID>1</PartitionID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> </DiskConfiguration> <WindowsDeploymentServices> <Login> <Credentials> <Domain>!!!!!</Domain> <Password>!!!!!</Password> <Username>!!!!!</Username> </Credentials> </Login> </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> <LayeredDriver>1</LayeredDriver> </component> </settings> <cpi:offlineImage cpi:source="wim:d:/temp/installimages/windows7/sources/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> |