Windows 2012 - WDS unattend Partition

Posted by joe on Server Fault See other posts from Server Fault or by joe
Published on 2012-11-15T06:24:54Z Indexed on 2012/11/16 17:02 UTC
Read the original article Hit count: 222

Filed under:
|

I'm trying to install Windows 2012 via Windows 2012 WDS. The installer displays the following error message: the partition selected for the installation (1) does not exist on disk 0. Make sure the unattend answer file's imageselection \installimage setting references a valid partition on this computer, and then restart the installation.

the unattend file (created by the "Create Client Unattend" dialog)

<unattend xmlns="urn:schemas-microsoft-com:unattend">
  <settings pass="windowsPE">
    <component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86">
      <WindowsDeploymentServices>
        <Login>
          <WillShowUI>OnError</WillShowUI>
          <Credentials>
            <Username>administrator</Username>
            <Domain>test</Domain>
            <Password>xxxx</Password>
          </Credentials>
        </Login>
<WillWipeDisk>true</WillWipeDisk>
<DiskConfiguration>
  <WillShowUI>OnError</WillShowUI>
  <Disk>
       <DiskID>0</DiskID>
       <WillWipeDisk>true</WillWipeDisk>
       <CreatePartitions>
          <CreatePartition>
             <Order>1</Order>
             <Type>Primary</Type>
             <Extend>true</Extend>
          </CreatePartition>
       </CreatePartitions>
  </Disk>
</DiskConfiguration>
        <ImageSelection>
          <WillShowUI>OnError</WillShowUI>
          <InstallImage>
            <ImageGroup>ImageGroup1</ImageGroup>
            <ImageName>Windows Server 2012 SERVERDATACENTER</ImageName>
            <Filename>install-(4).wim</Filename>
          </InstallImage>
          <InstallTo>
            <DiskID>0</DiskID>
            <PartitionID>1</PartitionID>
          </InstallTo>
        </ImageSelection>
      </WindowsDeploymentServices>
    </component>
    <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86">
      <SetupUILanguage>
        <UILanguage>en-US</UILanguage>
      </SetupUILanguage>
      <InputLocale>en-US</InputLocale>
      <SystemLocale>en-US</SystemLocale>
      <UILanguage>en-US</UILanguage>
      <UserLocale>en-US</UserLocale>
    </component>
    <component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
      <WindowsDeploymentServices>
        <Login>
          <WillShowUI>OnError</WillShowUI>
          <Credentials>
            <Username>administrator</Username>
            <Domain>test</Domain>
            <Password>xxxxx</Password>
          </Credentials>
        </Login>
        <ImageSelection>
          <WillShowUI>OnError</WillShowUI>
          <InstallImage>
            <ImageGroup>ImageGroup1</ImageGroup>
            <ImageName>Windows Server 2012 SERVERDATACENTER</ImageName>
            <Filename>install-(4).wim</Filename>
          </InstallImage>
          <InstallTo>
            <DiskID>0</DiskID>
            <PartitionID>1</PartitionID>
          </InstallTo>
        </ImageSelection>
      </WindowsDeploymentServices>
    </component>
    <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
      <SetupUILanguage>
        <UILanguage>en-US</UILanguage>
      </SetupUILanguage>
      <InputLocale>en-US</InputLocale>
      <SystemLocale>en-US</SystemLocale>
      <UILanguage>en-US</UILanguage>
      <UserLocale>en-US</UserLocale>
    </component>
  </settings>
</unattend>

Any idea why it is not working?

thanks

© Server Fault or respective owner

Related posts about windows-server-2012

Related posts about wds