Created
May 28, 2023 04:28
-
-
Save SystemJargon/eabe07277997b8d0a52ba85249ff4067 to your computer and use it in GitHub Desktop.
autounattend.xml for Windows installation (en-NZ region/language). Is AutoPilot compatible. Will wipe disk0 and use max space possible on partition4 for Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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="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"> | |
| <InputLocale>1409:00000409</InputLocale> | |
| <SystemLocale>en-NZ</SystemLocale> | |
| <UILanguage>en-US</UILanguage> | |
| <UILanguageFallback>en-US</UILanguageFallback> | |
| <UserLocale>en-NZ</UserLocale> | |
| <SetupUILanguage> | |
| <UILanguage>en-US</UILanguage> | |
| </SetupUILanguage> | |
| </component> | |
| <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> | |
| <WillShowUI>OnError</WillShowUI> | |
| <Disk wcm:action="add"> | |
| <DiskID>0</DiskID> | |
| <WillWipeDisk>true</WillWipeDisk> | |
| <CreatePartitions> | |
| <CreatePartition wcm:action="add"> | |
| <Order>1</Order> | |
| <Size>450</Size> | |
| <Type>Primary</Type> | |
| </CreatePartition> | |
| <CreatePartition wcm:action="add"> | |
| <Order>2</Order> | |
| <Size>100</Size> | |
| <Type>EFI</Type> | |
| </CreatePartition> | |
| <CreatePartition wcm:action="add"> | |
| <Order>3</Order> | |
| <Size>16</Size> | |
| <Type>MSR</Type> | |
| </CreatePartition> | |
| <CreatePartition wcm:action="add"> | |
| <Extend>true</Extend> | |
| <Order>4</Order> | |
| <Type>Primary</Type> | |
| </CreatePartition> | |
| </CreatePartitions> | |
| <ModifyPartitions> | |
| <ModifyPartition wcm:action="add"> | |
| <Format>NTFS</Format> | |
| <Label>WinRE</Label> | |
| <Order>1</Order> | |
| <PartitionID>1</PartitionID> | |
| <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID> | |
| </ModifyPartition> | |
| <ModifyPartition wcm:action="add"> | |
| <Format>FAT32</Format> | |
| <Label>System</Label> | |
| <Order>2</Order> | |
| <PartitionID>2</PartitionID> | |
| </ModifyPartition> | |
| <ModifyPartition wcm:action="add"> | |
| <Order>3</Order> | |
| <PartitionID>3</PartitionID> | |
| </ModifyPartition> | |
| <ModifyPartition wcm:action="add"> | |
| <Format>NTFS</Format> | |
| <Label>Windows</Label> | |
| <Letter>C</Letter> | |
| <Order>4</Order> | |
| <PartitionID>4</PartitionID> | |
| </ModifyPartition> | |
| </ModifyPartitions> | |
| </Disk> | |
| </DiskConfiguration> | |
| <ImageInstall> | |
| <OSImage> | |
| <InstallTo> | |
| <DiskID>0</DiskID> | |
| <PartitionID>4</PartitionID> | |
| </InstallTo> | |
| </OSImage> | |
| </ImageInstall> | |
| <UserData> | |
| <AcceptEula>true</AcceptEula> | |
| </UserData> | |
| </component> | |
| </settings> | |
| </unattend> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment