Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
- <settings pass="offlineServicing"></settings>
- <settings pass="windowsPE">
- <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="arm64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
- <SetupUILanguage>
- <UILanguage>en-US</UILanguage>
- </SetupUILanguage>
- <InputLocale>0809:00000809</InputLocale>
- <SystemLocale>en-GB</SystemLocale>
- <UILanguage>en-US</UILanguage>
- <UserLocale>en-GB</UserLocale>
- </component>
- <component name="Microsoft-Windows-Setup" processorArchitecture="arm64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
- <ImageInstall>
- <OSImage>
- <InstallTo>
- <DiskID>0</DiskID>
- <PartitionID>3</PartitionID>
- </InstallTo>
- </OSImage>
- </ImageInstall>
- <UserData>
- <ProductKey>
- <Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
- </ProductKey>
- <AcceptEula>true</AcceptEula>
- </UserData>
- <RunSynchronous>
- <RunSynchronousCommand wcm:action="add">
- <Order>1</Order>
- <Path>cmd.exe /c echo SELECT DISK=0 >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>2</Order>
- <Path>cmd.exe /c echo CLEAN >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>3</Order>
- <Path>cmd.exe /c echo CONVERT GPT >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>4</Order>
- <Path>cmd.exe /c echo CREATE PARTITION EFI SIZE=256 >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>5</Order>
- <Path>cmd.exe /c echo FORMAT QUICK FS=FAT32 LABEL="System" >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>6</Order>
- <Path>cmd.exe /c echo CREATE PARTITION MSR SIZE=128 >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>7</Order>
- <Path>cmd.exe /c echo CREATE PARTITION PRIMARY >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>8</Order>
- <Path>cmd.exe /c echo SHRINK MINIMUM=1024 >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>9</Order>
- <Path>cmd.exe /c echo FORMAT QUICK FS=NTFS LABEL="Win11ProArm" >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>10</Order>
- <Path>cmd.exe /c echo CREATE PARTITION PRIMARY >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>11</Order>
- <Path>cmd.exe /c echo FORMAT QUICK FS=NTFS LABEL="Recovery" >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>12</Order>
- <Path>cmd.exe /c echo SET ID="de94bba4-06d1-4d40-a16a-bfd50179d6ac" >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>13</Order>
- <Path>cmd.exe /c echo GPT ATTRIBUTES=0x8000000000000001 >> X:\diskpart.txt</Path>
- </RunSynchronousCommand>
- <RunSynchronousCommand wcm:action="add">
- <Order>14</Order>
- <Path>cmd.exe /c diskpart /s X:\diskpart.txt >> X:\diskpart.log</Path>
- </RunSynchronousCommand>
- </RunSynchronous>
- </component>
- </settings>
- <settings pass="generalize"></settings>
- <settings pass="specialize"></settings>
- <settings pass="auditSystem"></settings>
- <settings pass="auditUser"></settings>
- <settings pass="oobeSystem">
- <component name="Microsoft-Windows-International-Core" processorArchitecture="arm64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
- <InputLocale>0809:00000809</InputLocale>
- <SystemLocale>en-GB</SystemLocale>
- <UILanguage>en-US</UILanguage>
- <UserLocale>en-GB</UserLocale>
- </component>
- <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="arm64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
- <UserAccounts>
- <AdministratorPassword>
- <Value>password1</Value>
- <PlainText>true</PlainText>
- </AdministratorPassword>
- <LocalAccounts>
- <LocalAccount wcm:action="add">
- <Name>ArmNinja</Name>
- <Group>Administrators</Group>
- <Password>
- <Value>password2</Value>
- <PlainText>true</PlainText>
- </Password>
- </LocalAccount>
- <LocalAccount wcm:action="add">
- <Name>Superman</Name>
- <Group>Administrators</Group>
- <Password>
- <Value>password3</Value>
- <PlainText>true</PlainText>
- </Password>
- </LocalAccount>
- </LocalAccounts>
- </UserAccounts>
- <AutoLogon>
- <Username>Administrator</Username>
- <Enabled>true</Enabled>
- <LogonCount>1</LogonCount>
- <Password>
- <Value>password</Value>
- <PlainText>true</PlainText>
- </Password>
- </AutoLogon>
- <OOBE>
- <ProtectYourPC>3</ProtectYourPC>
- <HideEULAPage>true</HideEULAPage>
- <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
- </OOBE>
- </component>
- </settings>
- </unattend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement