Hello Members,
I am doing a unattended Deployment of Windows 10 onto some Physical machine.
I have captured the .wim images of C Drive (Windows) and D Drive (Data).
Windows.wim
Data.wim
Now using WDS role and answer file, I am successfully able to
Create Drive partitions and
Deploy the Windows.wim file to C Drive (partition 1)
But Unable to Deploy Data.wim to D Drive (partition 2), is there any configuration in the Answer file that am missing? or Any better alternative.
Tried using the DataImage in the Answer file as below but no luck.
<ImageInstall>
<DataImage wcm:action="add">
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>2</PartitionID>
</InstallTo>
<InstallFrom>
<Credentials>
<Domain>XXXXXX</Domain>
<Password>XXXXXX</Password>
<Username>XXXXXX</Username>
</Credentials>
<Path>\\UNC\Data.wim</Path>
</InstallFrom>
<Order>1</Order>
</DataImage>
</ImageInstall>