MDT 2010 Educational Video Courseware Series

Additional Resources 2 >>

Current Links to MDT 2010 and Operating System Deployment Resources 2:                                 

 

Ø    Copy and Paste Sample Unattended XML Answer file for base Operating System Automation.

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

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

  <settings pass="windowsPE">

    <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>

        <WillShowUI>OnError</WillShowUI>

      </SetupUILanguage>

    </component>

    <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">

      <WindowsDeploymentServices>

        <Login>

          <Credentials>

            <Domain>Domian</Domain>

            <Password>Enter Password</Password>

            <Username>Enter Username</Username>

          </Credentials>

        </Login>

        <ImageSelection>

          <InstallImage>

            <Filename>IMAGE.WIM</Filename>

            <ImageGroup>IMAGE_Group</ImageGroup>

            <ImageName>IMAGE_Name</ImageName>

          </InstallImage>

          <InstallTo>

            <DiskID>0</DiskID>

            <PartitionID>1</PartitionID>

          </InstallTo>

        </ImageSelection>

      </WindowsDeploymentServices>

      <DiskConfiguration>

        <WillShowUI>Never</WillShowUI>

        <Disk wcm:action="modify">

          <DiskID>0</DiskID>

          <WillWipeDisk>true</WillWipeDisk>

          <CreatePartitions>

            <CreatePartition wcm:action="modify">

              <Order>1</Order>

              <Size>20480</Size>

              <Type>Primary</Type>

            </CreatePartition>

          </CreatePartitions>

          <ModifyPartitions>

            <ModifyPartition wcm:action="modify">

              <Active>true</Active>

              <Extend>true</Extend>

              <Format>NTFS</Format>

              <Label>System</Label>

              <Letter>C</Letter>

              <Order>1</Order>

              <PartitionID>1</PartitionID>

            </ModifyPartition>

          </ModifyPartitions>

        </Disk>

      </DiskConfiguration>

      <Display>

        <HorizontalResolution>800</HorizontalResolution>

        <RefreshRate>600</RefreshRate>

        <ColorDepth>16</ColorDepth>

        <VerticalResolution>480</VerticalResolution>

      </Display>

    </component>

  </settings>

</unattend>

 

 

 

Last Updated: