<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <!--
Sample answer file for headless deployment
  1. Edit answer file to include your information; password, product key, language etc.
  2. Run setup using the /unattend:answer_file command line parameter where answer_file is the path to the answer file
	ex. setup.exe /unattend:\\server\share\unattend.xml
  3. See the Windows Automated Installation Kit for additional guidance on unattended installation and headless deployment

  NOTE: This sample will wipe disk 0 and clear all data on the disk. 
-->
    <settings pass="windowsPE">
        <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" 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">
                            <Size>100</Size>
                            <Order>1</Order>
                            <Extend>false</Extend>
                            <Type>Primary</Type>
                        </CreatePartition>
                        <CreatePartition wcm:action="add">
                            <Size>200000</Size>
                            <Order>2</Order>
                            <Extend>false</Extend>
                            <Type>Primary</Type>
                        </CreatePartition>
                        <CreatePartition wcm:action="add">
                            <Order>3</Order>
                            <Extend>true</Extend>
                            <Type>Primary</Type>
                        </CreatePartition>
                    </CreatePartitions>
                    <ModifyPartitions>
                        <ModifyPartition>
                            <Order>1</Order>
                            <PartitionID>1</PartitionID>
                            <Format>NTFS</Format>
                            <Label>System reserved</Label>
                            <Active>true</Active>
                        </ModifyPartition>
                        <ModifyPartition>
                            <Order>2</Order>
                            <PartitionID>2</PartitionID>
                            <Format>NTFS</Format>
                            <Label>Windows</Label>
                        </ModifyPartition>
                        <ModifyPartition>
                            <Order>3</Order>
                            <PartitionID>3</PartitionID>
                            <Format>NTFS</Format>
                            <Label>Data</Label>
                        </ModifyPartition>
                    </ModifyPartitions>
                    <WillWipeDisk>true</WillWipeDisk>
                    <DiskID>0</DiskID>
                </Disk>
                <WillShowUI>Never</WillShowUI>
            </DiskConfiguration>
            <ImageInstall>
                <BootImage wcm:action="add">
                    <InstallFrom>
                        <Credentials>
                            <Password>Rkr761dm</Password>
                            <Username>maksjoke</Username>
                        </Credentials>
                        <Path>\\192.168.0.101\share\HSE_Office_Win7_Prof_x64.wim</Path>
                        <MetaData wcm:action="add">
                            <Key>/IMAGE/INDEX</Key>
                            <Value>1</Value>
                        </MetaData>
                    </InstallFrom>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>1</PartitionID>
                    </InstallTo>
                </BootImage>
                <OSImage wcm:action="add">
                    <InstallFrom>
                        <Credentials>
                            <Password>Rkr761dm</Password>
                            <Username>maksjoke</Username>
                        </Credentials>
                        <Path>\\192.168.0.101\share\HSE_Office_Win7_Prof_x64.wim</Path>
                        <MetaData wcm:action="add">
                            <Key>/IMAGE/INDEX</Key>
                            <Value>2</Value>
                        </MetaData>
                    </InstallFrom>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>2</PartitionID>
                    </InstallTo>
                </OSImage>
                <DataImage wcm:action="add">
                    <InstallFrom>
                        <Credentials>
                            <Password>Rkr761dm</Password>
                            <Username>maksjoke</Username>
                        </Credentials>
                        <Path>\\192.168.0.101\share\HSE_Office_Win7_Prof_x64.wim</Path>
                        <MetaData wcm:action="add">
                            <Key>/IMAGE/INDEX</Key>
                            <Value>3</Value>
                        </MetaData>
                    </InstallFrom>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>3</PartitionID>
                    </InstallTo>
                </DataImage>
            </ImageInstall>
            <EnableNetwork>true</EnableNetwork>
        </component>
		<!--
        <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <DriverPaths>
                <PathAndCredentials wcm:action="add" wcm:keyValue="1">
                    <Path>INSERT DRIVER PATH</Path>
                </PathAndCredentials>
            </DriverPaths>
        </component>
-->
    </settings>
	<!--<Restart>Restart</Restart>-->
    <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
