I'm failing to deploy Windows 10 64-bit to a UEFI-running ThinkPad, using
WDS on Server 2012 R2. 

I've created an unattended.xml file - full text all the way below - that
creates the EFI, MSR, and Primary partitions (do I need a WinRE 'recovery'
partition? With WinRE.wim?)

Basically, the deploy looks like it's working, with the green checks showing
on copy files, add features, add drivers, and Finishing Up, and then it
throws the error message "Setup cannot continue due to a corrupted
installation file."

 

 

EventViewer shows:

SessionGuid: {3d26fxxx-xxxx-xxxx-xxxxxxxxxxxxxxxxxx}

MAC: 50-7B-xxxxxxxxxx

IP: 192.168.xx.xx

ClientDeviceID: {BCCD0xx-xxx-1xxx-xxx-xxxxxxxxxx}

ClientArchitecture: x64

ErrorMessage: Setup cannot continue due to a corrupted installation file.
Contact the vendor of your Windows installation disc or your system
administrator for assistance.

Which doesn't add any intelligence.

 

The client laptop is set to UEFI Only, and CSM: yes

 

Can anyone help point me in the right direction?

 

By the way, does unattend.xml need to be named unattend.xml or can I have
several versions of unattend with appropriate names?

 

Thanks,

Kish n Kepi

 

 

 

 

 

 

Unattend.xml

<?xml version="1.0" encoding="utf-8"?>

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

    <settings pass="windowsPE">

        <component name="Microsoft-Windows-Setup"
processorArchitecture="amd64" publicKeyToken="31xxxxxxxxxxxxxx5"
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">

                            <Order>1</Order>

                            <Size>200</Size>

                            <Type>EFI</Type>

                        </CreatePartition>

                        <CreatePartition wcm:action="add">

                            <Order>2</Order>

                            <Size>128</Size>

                            <Type>MSR</Type>

                        </CreatePartition>

                        <CreatePartition wcm:action="add">

                            <Extend>true</Extend>

                            <Order>3</Order>

                            <Type>Primary</Type>

                        </CreatePartition>

                    </CreatePartitions>

                    <DiskID>0</DiskID>

                    <WillWipeDisk>true</WillWipeDisk>

                </Disk>

            </DiskConfiguration>

            <ImageInstall>

                <OSImage>

                    <InstallTo>

                        <DiskID>0</DiskID>

                        <PartitionID>3</PartitionID>

                    </InstallTo>

                </OSImage>

            </ImageInstall>

        </component>

    </settings>

    <cpi:offlineImage cpi:source="wim:d:/wims/win10pro/install.wim#Windows
10 Pro Technical Preview" xmlns:cpi="urn:schemas-microsoft-com:cpi" />

</unattend>

 

 

 


Reply via email to