347 lines
14 KiB
XML
347 lines
14 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
============================================================================
|
|
autounattend.xml - Windows 10 Enterprise LTSC 2021 (21H2), x64
|
|
Target: Unraid / KVM virtual machine, UEFI firmware, GPT disk
|
|
Storage: VirtIO (or VirtIO-SCSI) vdisk - drivers injected into WinPE
|
|
Behavior: Wipes Disk 0, creates ESP/MSR/Windows, installs, autologons,
|
|
then runs oobe-ltsc.ps1 (VirtIO guest tools, MeshCentral, settings).
|
|
|
|
PLACE AT: the ROOT of the merged VirtIO ISO, renamed to autounattend.xml,
|
|
alongside virtio-win-guest-tools.exe AND oobe-ltsc.ps1. The ISO
|
|
needs Joliet names so oobe-ltsc.ps1 isn't mangled to 8.3.
|
|
Attach that ISO in the Unraid VM's
|
|
"VirtIO Drivers ISO" slot; leave "OS Install ISO" on the LTSC image.
|
|
|
|
>>> DESTRUCTIVE: WillWipeDisk erases Disk 0 with no prompt. <<<
|
|
|
|
Credentials baked in below: labadmin / mdwelcome (stored in CLEAR TEXT)
|
|
Search for "EDIT" to find every value you probably want to change.
|
|
============================================================================
|
|
-->
|
|
<unattend xmlns="urn:schemas-microsoft-com:unattend">
|
|
|
|
<!-- =======================================================================
|
|
PASS 1: windowsPE
|
|
======================================================================= -->
|
|
<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">
|
|
<SetupUILanguage>
|
|
<UILanguage>en-US</UILanguage>
|
|
</SetupUILanguage>
|
|
<InputLocale>0409:00000409</InputLocale>
|
|
<SystemLocale>en-US</SystemLocale>
|
|
<UILanguage>en-US</UILanguage>
|
|
<UserLocale>en-US</UserLocale>
|
|
</component>
|
|
|
|
<!-- ===============================================================
|
|
VIRTIO DRIVER INJECTION - the load-bearing part.
|
|
WinPE has no viostor/vioscsi driver, so without this the vdisk is
|
|
invisible and Setup dies with "no drives were found". Because the
|
|
disk layout is automated there is no Load Driver button to fall
|
|
back on, so this must succeed.
|
|
|
|
Drive letters in WinPE are not deterministic: the LTSC disc and the
|
|
VirtIO disc land on D:/E: in either order, so both are listed, plus
|
|
F: as insurance. Setup logs a warning for paths that don't exist
|
|
and continues, so the extra entries cost nothing.
|
|
|
|
viostor = VirtIO block bus (Unraid vdisk bus: virtio)
|
|
vioscsi = VirtIO SCSI bus (Unraid vdisk bus: virtio-scsi)
|
|
NetKVM = network, so WinPE has connectivity if you ever need it
|
|
=============================================================== -->
|
|
<component name="Microsoft-Windows-PnpCustomizationsWinPE"
|
|
processorArchitecture="amd64"
|
|
publicKeyToken="31bf3856ad364e35"
|
|
language="neutral"
|
|
versionScope="nonSxS"
|
|
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
|
|
<DriverPaths>
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="1">
|
|
<Path>D:\viostor\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="2">
|
|
<Path>E:\viostor\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="3">
|
|
<Path>F:\viostor\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="4">
|
|
<Path>D:\vioscsi\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="5">
|
|
<Path>E:\vioscsi\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="6">
|
|
<Path>F:\vioscsi\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="7">
|
|
<Path>D:\NetKVM\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="8">
|
|
<Path>E:\NetKVM\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
<PathAndCredentials wcm:action="add" wcm:keyValue="9">
|
|
<Path>F:\NetKVM\w10\amd64</Path>
|
|
</PathAndCredentials>
|
|
</DriverPaths>
|
|
</component>
|
|
|
|
<component name="Microsoft-Windows-Setup"
|
|
processorArchitecture="amd64"
|
|
publicKeyToken="31bf3856ad364e35"
|
|
language="neutral"
|
|
versionScope="nonSxS"
|
|
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
|
|
|
|
<!-- Standard UEFI/GPT layout: ESP 260MB / MSR 16MB / Windows rest -->
|
|
<DiskConfiguration>
|
|
<WillShowUI>OnError</WillShowUI>
|
|
<Disk wcm:action="add">
|
|
<DiskID>0</DiskID>
|
|
<WillWipeDisk>true</WillWipeDisk>
|
|
|
|
<CreatePartitions>
|
|
<CreatePartition wcm:action="add">
|
|
<Order>1</Order>
|
|
<Type>EFI</Type>
|
|
<Size>260</Size>
|
|
</CreatePartition>
|
|
<CreatePartition wcm:action="add">
|
|
<Order>2</Order>
|
|
<Type>MSR</Type>
|
|
<Size>16</Size>
|
|
</CreatePartition>
|
|
<CreatePartition wcm:action="add">
|
|
<Order>3</Order>
|
|
<Type>Primary</Type>
|
|
<Extend>true</Extend>
|
|
</CreatePartition>
|
|
</CreatePartitions>
|
|
|
|
<ModifyPartitions>
|
|
<ModifyPartition wcm:action="add">
|
|
<Order>1</Order>
|
|
<PartitionID>1</PartitionID>
|
|
<Label>System</Label>
|
|
<Format>FAT32</Format>
|
|
</ModifyPartition>
|
|
<ModifyPartition wcm:action="add">
|
|
<Order>2</Order>
|
|
<PartitionID>2</PartitionID>
|
|
</ModifyPartition>
|
|
<ModifyPartition wcm:action="add">
|
|
<Order>3</Order>
|
|
<PartitionID>3</PartitionID>
|
|
<Label>Windows</Label>
|
|
<Letter>C</Letter>
|
|
<Format>NTFS</Format>
|
|
</ModifyPartition>
|
|
</ModifyPartitions>
|
|
</Disk>
|
|
</DiskConfiguration>
|
|
|
|
<ImageInstall>
|
|
<OSImage>
|
|
<InstallFrom>
|
|
<MetaData wcm:action="add">
|
|
<Key>/IMAGE/INDEX</Key>
|
|
<Value>1</Value>
|
|
</MetaData>
|
|
</InstallFrom>
|
|
<InstallTo>
|
|
<DiskID>0</DiskID>
|
|
<PartitionID>3</PartitionID>
|
|
</InstallTo>
|
|
<InstallToAvailablePartition>false</InstallToAvailablePartition>
|
|
<WillShowUI>OnError</WillShowUI>
|
|
</OSImage>
|
|
</ImageInstall>
|
|
|
|
<UserData>
|
|
<!-- EDIT: generic KMS client key for Enterprise LTSC 2021. Gets Setup
|
|
past the prompt; does NOT activate. N edition is
|
|
92NFX-8DJQP-P6BBQ-THF9C-7CG2H. -->
|
|
<ProductKey>
|
|
<Key>M7XTQ-FN8P6-TTKYV-9D4CC-J462D</Key>
|
|
<WillShowUI>OnError</WillShowUI>
|
|
</ProductKey>
|
|
<AcceptEula>true</AcceptEula>
|
|
<FullName>IT</FullName>
|
|
<Organization>Contoso</Organization>
|
|
</UserData>
|
|
|
|
</component>
|
|
</settings>
|
|
|
|
<!-- =======================================================================
|
|
PASS 2: specialize
|
|
======================================================================= -->
|
|
<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">
|
|
<!-- "*" = random name. A literal name must NOT match any local account. -->
|
|
<ComputerName>*</ComputerName>
|
|
<!-- EDIT: `tzutil /l` lists every valid value. -->
|
|
<TimeZone>Pacific Standard Time</TimeZone>
|
|
<RegisteredOwner>IT</RegisteredOwner>
|
|
<RegisteredOrganization>Contoso</RegisteredOrganization>
|
|
</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">
|
|
<SkipAutoActivation>true</SkipAutoActivation>
|
|
</component>
|
|
|
|
<!-- RDP on - the practical way into a headless Unraid VM once the
|
|
VirtIO video driver replaces the VNC console. -->
|
|
<component name="Microsoft-Windows-TerminalServices-LocalSessionManager"
|
|
processorArchitecture="amd64"
|
|
publicKeyToken="31bf3856ad364e35"
|
|
language="neutral"
|
|
versionScope="nonSxS"
|
|
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
|
|
<fDenyTSConnections>false</fDenyTSConnections>
|
|
</component>
|
|
|
|
<component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions"
|
|
processorArchitecture="amd64"
|
|
publicKeyToken="31bf3856ad364e35"
|
|
language="neutral"
|
|
versionScope="nonSxS"
|
|
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
|
|
<UserAuthentication>1</UserAuthentication>
|
|
<SecurityLayer>2</SecurityLayer>
|
|
</component>
|
|
|
|
</settings>
|
|
|
|
<!-- =======================================================================
|
|
PASS 3: oobeSystem
|
|
======================================================================= -->
|
|
<settings pass="oobeSystem">
|
|
|
|
<component name="Microsoft-Windows-International-Core"
|
|
processorArchitecture="amd64"
|
|
publicKeyToken="31bf3856ad364e35"
|
|
language="neutral"
|
|
versionScope="nonSxS"
|
|
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
|
|
<InputLocale>0409:00000409</InputLocale>
|
|
<SystemLocale>en-US</SystemLocale>
|
|
<UILanguage>en-US</UILanguage>
|
|
<UserLocale>en-US</UserLocale>
|
|
</component>
|
|
|
|
<component name="Microsoft-Windows-Shell-Setup"
|
|
processorArchitecture="amd64"
|
|
publicKeyToken="31bf3856ad364e35"
|
|
language="neutral"
|
|
versionScope="nonSxS"
|
|
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
|
|
|
|
<OOBE>
|
|
<HideEULAPage>true</HideEULAPage>
|
|
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
|
|
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
|
|
<HideLocalAccountScreen>true</HideLocalAccountScreen>
|
|
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
|
|
<NetworkLocation>Work</NetworkLocation>
|
|
<ProtectYourPC>3</ProtectYourPC>
|
|
</OOBE>
|
|
|
|
<!-- ===============================================================
|
|
ACCOUNTS - password is mdwelcome, in clear text, three times.
|
|
Treat this file and the merged ISO as secrets.
|
|
=============================================================== -->
|
|
<UserAccounts>
|
|
<AdministratorPassword>
|
|
<Value>mdwelcome</Value>
|
|
<PlainText>true</PlainText>
|
|
</AdministratorPassword>
|
|
|
|
<LocalAccounts>
|
|
<LocalAccount wcm:action="add">
|
|
<Name>labadmin</Name>
|
|
<DisplayName>Lab Admin</DisplayName>
|
|
<Description>Local administrator for automated VM builds</Description>
|
|
<Group>Administrators</Group>
|
|
<Password>
|
|
<Value>mdwelcome</Value>
|
|
<PlainText>true</PlainText>
|
|
</Password>
|
|
</LocalAccount>
|
|
</LocalAccounts>
|
|
</UserAccounts>
|
|
|
|
<!-- Persistent autologon. Drop LogonCount to 1 if you'd rather the VM
|
|
land on a logon screen once provisioning finishes. -->
|
|
<AutoLogon>
|
|
<Enabled>true</Enabled>
|
|
<Username>labadmin</Username>
|
|
<LogonCount>999</LogonCount>
|
|
<Password>
|
|
<Value>mdwelcome</Value>
|
|
<PlainText>true</PlainText>
|
|
</Password>
|
|
</AutoLogon>
|
|
|
|
<DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
|
|
|
|
<!-- ===============================================================
|
|
FIRST LOGON COMMANDS - run once, elevated, as labadmin.
|
|
=============================================================== -->
|
|
<FirstLogonCommands>
|
|
|
|
<SynchronousCommand wcm:action="add">
|
|
<Order>1</Order>
|
|
<Description>Show file extensions</Description>
|
|
<CommandLine>reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 0 /f</CommandLine>
|
|
<RequiresUserInput>false</RequiresUserInput>
|
|
</SynchronousCommand>
|
|
|
|
<SynchronousCommand wcm:action="add">
|
|
<Order>2</Order>
|
|
<Description>Allow signed PowerShell scripts</Description>
|
|
<CommandLine>powershell -NoProfile -Command "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine -Force"</CommandLine>
|
|
<RequiresUserInput>false</RequiresUserInput>
|
|
</SynchronousCommand>
|
|
|
|
<!-- Provisioning: oobe-ltsc.ps1 sits at the root of the merged ISO
|
|
next to this file. Scans every drive for it rather than assuming
|
|
a letter, since the VirtIO disc moves around post-install.
|
|
The script installs the VirtIO guest tools, MeshCentral agent,
|
|
power/RDP/SSH settings, then restarts the VM itself, so this
|
|
must stay the LAST command. Log: C:\ProgramData\OOBE\oobe-ltsc.log -->
|
|
<SynchronousCommand wcm:action="add">
|
|
<Order>3</Order>
|
|
<Description>Run oobe-ltsc.ps1 provisioning script</Description>
|
|
<CommandLine>powershell -NoProfile -ExecutionPolicy Bypass -Command "$s = Get-PSDrive -PSProvider FileSystem | ForEach-Object { Join-Path $_.Root 'oobe-ltsc.ps1' } | Where-Object { Test-Path $_ } | Select-Object -First 1; if ($s) { & $s } else { Write-Warning 'oobe-ltsc.ps1 not found on any drive'; Start-Sleep -Seconds 60 }"</CommandLine>
|
|
<RequiresUserInput>false</RequiresUserInput>
|
|
</SynchronousCommand>
|
|
|
|
</FirstLogonCommands>
|
|
</component>
|
|
</settings>
|
|
|
|
</unattend>
|
|
|