Windows 10 Windows 10 v1809 unattended diskconfiguration

  • Thread starter Thread starter KarimEl.Sawy
  • Start date Start date
K

KarimEl.Sawy

Hi,


i have big problem with deploying Win 10 v1809 with WDS. I configured WDS.

Everything works until i get to the screen, where i have to select my Windows destination. With my xml i wanted to do this automatically. but there is no wipe of the disk and there is no creation of new partitions. I need to create the partitions for UEFI.

Did i do something wrong? Hope u can help me.

On WDS i connected the xml file with the installation image and also pu it under the settings/client tab for x64(uefi).


greetings Karim


Here is my xml:


xml version="1.0" encoding="UTF-8"?>

<unattend xmlns="urn:schemas-microsoft-com:unattend">


<settings pass="windowsPE">


<component language="neutral" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" versionScope="nonSxS" publicKeyToken="31bf3856ad364e35" processorArchitecture="amd64" name="Microsoft-Windows-International-Core-WinPE">


<SetupUILanguage>

<UILanguage>de-DE</UILanguage>

</SetupUILanguage>

<InputLocale>0407:00000407</InputLocale>

<SystemLocale>de-DE</SystemLocale>

<UILanguage>de-DE</UILanguage>

<UILanguageFallback>de-DE</UILanguageFallback>

<UserLocale>de-DE</UserLocale>

</component>


<component language="neutral" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" versionScope="nonSxS" publicKeyToken="31bf3856ad364e35" processorArchitecture="amd64" name="Microsoft-Windows-Setup">


<DiskConfiguration>


<Disk wcm:action="add">

<WillWipeDisk>true</WillWipeDisk>

<DiskID>0</DiskID>


<CreatePartitions>


<CreatePartition wcm:action="add">

<Order>1</Order>

<Size>500</Size>

<Type>Primary</Type>

</CreatePartition>


<CreatePartition wcm:action="add">

<Order>2</Order>

<Size>100</Size>

<Type>EFI</Type>

</CreatePartition>


<CreatePartition wcm:action="add">

<Order>3</Order>

<Size>16</Size>

<Type>MSR</Type>

</CreatePartition>


<CreatePartition wcm:action="add">

<Extend>true</Extend>

<Order>4</Order>

<Type>Primary</Type>

</CreatePartition>

</CreatePartitions>


<ModifyPartitions>


<ModifyPartition wcm:action="add">

<Format>NTFS</Format>

<Label>WinRE</Label>

<Order>1</Order>

<PartitionID>1</PartitionID>

<TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>

</ModifyPartition>


<ModifyPartition wcm:action="add">

<Label>System</Label>

<Format>FAT32</Format>

<Order>2</Order>

<PartitionID>2</PartitionID>

</ModifyPartition>


<ModifyPartition wcm:action="add">

<Order>3</Order>

<PartitionID>3</PartitionID>

</ModifyPartition>


<ModifyPartition wcm:action="add">

<Letter>C</Letter>

<Label>Windows</Label>

<Format>NTFS</Format>

<Order>4</Order>

<PartitionID>4</PartitionID>

</ModifyPartition>

</ModifyPartitions>

</Disk>

<WillShowUI>OnError</WillShowUI>

</DiskConfiguration>


<ImageInstall>


<OSImage>


<InstallTo>

<DiskID>0</DiskID>

<PartitionID>4</PartitionID>

</InstallTo>

<WillShowUI>OnError</WillShowUI>

</OSImage>

</ImageInstall>

</component>

</settings>

<cpi:offlineImage xmlns:cpi="urn:schemas-microsoft-com:cpi" cpi:source="wim:\\***********\REMINST\Images\Group1\install.wim#Windows 10 Pro"/>

</unattend>

Continue reading...
 
Back
Top