Last active
June 22, 2022 06:23
-
-
Save mwhooker/b4827b65fa421f5da8f7e106dcec388d to your computer and use it in GitHub Desktop.
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"> | |
<!-- Autounattend_x64-UEFI_sample.xml | |
This file automates the Windows installation. | |
Before using this file: | |
* Replace ProductKey with a product key for the edition of Windows you are installing | |
(example: Windows 8 Pro) | |
Note: | |
The product key used in Microsoft-Windows-Setup\UserData\ProductKey\Key | |
can be used many times in different installations and is not used to activate Windows. | |
It is only used to choose which edition of Windows to install. | |
The individual product key is either specified by the user, or by setting | |
Microsoft-Windows-Shell-Setup\ProductKey. | |
* Set the default language to your own: | |
Replace "en-US" with your language code in Microsoft-Windows-International-Core-WinPE\SetupUILanguage. | |
For a list of languages, see http://go.microsoft.com/fwlink/?LinkId=206620. | |
* OEMs: Replace OEMInformation with your support information | |
To use this file: | |
Save this file on the root of a USB flash drive with the filename: Autounattend.xml | |
Put the Windows DVD and the USB key into a new x64-UEFI PC. | |
--> | |
<settings pass="specialize"> | |
<component name="Microsoft-Windows-Shell-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"> | |
<OEMInformation> | |
<Manufacturer>Mission Bit</Manufacturer> | |
<SupportURL>https://www.missionbit.com/</SupportURL> | |
<HelpCustomized>false</HelpCustomized> | |
</OEMInformation> | |
</component> | |
<component name="Microsoft-Windows-Security-SPP-UX" 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"> | |
<SkipAutoActivation>true</SkipAutoActivation> | |
</component> | |
<component name="Security-Malware-Windows-Defender" 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"> | |
<DisableAntiSpyware>false</DisableAntiSpyware> | |
</component> | |
</settings> | |
<settings pass="oobeSystem"> | |
<component name="Microsoft-Windows-Shell-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"> | |
<OOBE> | |
<HideEULAPage>true</HideEULAPage> | |
<HideLocalAccountScreen>true</HideLocalAccountScreen> | |
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen> | |
<HideOnlineAccountScreens>true</HideOnlineAccountScreens> | |
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> | |
<NetworkLocation>Work</NetworkLocation> | |
<ProtectYourPC>1</ProtectYourPC> | |
<SkipMachineOOBE>true</SkipMachineOOBE> | |
<SkipUserOOBE>true</SkipUserOOBE> | |
</OOBE> | |
<UserAccounts> | |
<AdministratorPassword> | |
<Value>4me2no</Value> | |
<PlainText>true</PlainText> | |
</AdministratorPassword> | |
<LocalAccounts> | |
<LocalAccount wcm:action="add"> | |
<Password> | |
<Value>missionbit</Value> | |
<PlainText>true</PlainText> | |
</Password> | |
<Description>MissionBit account</Description> | |
<DisplayName>MissionBit</DisplayName> | |
<Group>Administrators;Power Users</Group> | |
<Name>missionbit</Name> | |
</LocalAccount> | |
</LocalAccounts> | |
</UserAccounts> | |
<RegisteredOwner /> | |
<TimeZone>Pacific Standard Time</TimeZone> | |
</component> | |
</settings> | |
<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"> | |
<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" 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> | |
<!-- System partition --> | |
<CreatePartition wcm:action="add"> | |
<Order>1</Order> | |
<Size>350</Size> | |
<Type>Primary</Type> | |
</CreatePartition> | |
<!-- Windows partition --> | |
<CreatePartition wcm:action="add"> | |
<Order>2</Order> | |
<Extend>true</Extend> | |
<Type>Primary</Type> | |
</CreatePartition> | |
</CreatePartitions> | |
<ModifyPartitions> | |
<ModifyPartition wcm:action="add"> | |
<Order>1</Order> | |
<PartitionID>1</PartitionID> | |
<Label>System</Label> | |
<Format>NTFS</Format> | |
<Active>true</Active> | |
</ModifyPartition> | |
<ModifyPartition wcm:action="add"> | |
<Order>2</Order> | |
<PartitionID>2</PartitionID> | |
<Format>NTFS</Format> | |
<Label>Windows</Label> | |
</ModifyPartition> | |
</ModifyPartitions> | |
<DiskID>0</DiskID> | |
<WillWipeDisk>true</WillWipeDisk> | |
</Disk> | |
<WillShowUI>OnError</WillShowUI> | |
</DiskConfiguration> | |
<ImageInstall> | |
<OSImage> | |
<InstallTo> | |
<DiskID>0</DiskID> | |
<PartitionID>2</PartitionID> | |
</InstallTo> | |
</OSImage> | |
</ImageInstall> | |
<UserData> | |
<ProductKey> | |
<WillShowUI>OnError</WillShowUI> | |
<Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key> | |
</ProductKey> | |
<AcceptEula>true</AcceptEula> | |
<FullName>MissionBit</FullName> | |
<Organization>MissionBit</Organization> | |
</UserData> | |
</component> | |
</settings> | |
</unattend> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment