mirror of
				https://github.com/dockur/windows.git
				synced 2025-11-03 22:04:29 +00:00 
			
		
		
		
	feat: Unattended installation (#23)
This commit is contained in:
		
							parent
							
								
									b42cf1a1f3
								
							
						
					
					
						commit
						f0047bd6dc
					
				@ -9,12 +9,14 @@ RUN apt-get update \
 | 
			
		||||
        curl \
 | 
			
		||||
        novnc \
 | 
			
		||||
        swtpm \
 | 
			
		||||
        wimtools \
 | 
			
		||||
        p7zip-full \
 | 
			
		||||
        genisoimage \
 | 
			
		||||
    && apt-get clean \
 | 
			
		||||
    && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
 | 
			
		||||
 | 
			
		||||
COPY ./src /run/
 | 
			
		||||
COPY ./assets /run/assets
 | 
			
		||||
 | 
			
		||||
ADD https://raw.githubusercontent.com/ElliotKillick/Mido/main/Mido.sh /run/mido.sh
 | 
			
		||||
ADD https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso /run/drivers.iso
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										283
									
								
								assets/win10x64.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										283
									
								
								assets/win10x64.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,283 @@
 | 
			
		||||
<?xml version="1.0"?>
 | 
			
		||||
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
 | 
			
		||||
  <settings pass="offlineServicing"/>
 | 
			
		||||
  <settings pass="windowsPE">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SetupUILanguage>
 | 
			
		||||
        <UILanguage>en-US</UILanguage>
 | 
			
		||||
      </SetupUILanguage>
 | 
			
		||||
      <InputLocale>0409:00000409</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">
 | 
			
		||||
      <DiskConfiguration>
 | 
			
		||||
        <Disk wcm:action="add">
 | 
			
		||||
          <DiskID>0</DiskID>
 | 
			
		||||
          <WillWipeDisk>true</WillWipeDisk>
 | 
			
		||||
          <CreatePartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Size>300</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <Type>EFI</Type>
 | 
			
		||||
              <Size>100</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Microsoft reserved partition (MSR) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <Type>MSR</Type>
 | 
			
		||||
              <Size>128</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Extend>true</Extend>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
          </CreatePartitions>
 | 
			
		||||
          <ModifyPartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <PartitionID>1</PartitionID>
 | 
			
		||||
              <Label>WINRE</Label>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
              <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <PartitionID>2</PartitionID>
 | 
			
		||||
              <Label>System</Label>
 | 
			
		||||
              <Format>FAT32</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- MSR partition does not need to be modified -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <PartitionID>3</PartitionID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <PartitionID>4</PartitionID>
 | 
			
		||||
              <Label>Windows</Label>
 | 
			
		||||
              <Letter>C</Letter>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
          </ModifyPartitions>
 | 
			
		||||
        </Disk>
 | 
			
		||||
      </DiskConfiguration>
 | 
			
		||||
      <ImageInstall>
 | 
			
		||||
        <OSImage>
 | 
			
		||||
          <InstallTo>
 | 
			
		||||
            <DiskID>0</DiskID>
 | 
			
		||||
            <PartitionID>4</PartitionID>
 | 
			
		||||
          </InstallTo>
 | 
			
		||||
          <InstallToAvailablePartition>false</InstallToAvailablePartition>
 | 
			
		||||
        </OSImage>
 | 
			
		||||
      </ImageInstall>
 | 
			
		||||
      <UserData>
 | 
			
		||||
        <ProductKey>
 | 
			
		||||
          <Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
 | 
			
		||||
        </ProductKey>
 | 
			
		||||
        <AcceptEula>true</AcceptEula>
 | 
			
		||||
      </UserData>
 | 
			
		||||
      <EnableFirewall>false</EnableFirewall>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DriverPaths>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="1">
 | 
			
		||||
          <Path>D:\viostor\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="2">
 | 
			
		||||
          <Path>D:\NetKVM\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="3">
 | 
			
		||||
          <Path>D:\Balloon\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="4">
 | 
			
		||||
          <Path>D:\pvpanic\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="5">
 | 
			
		||||
          <Path>D:\qemupciserial\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="6">
 | 
			
		||||
          <Path>D:\qxldod\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="7">
 | 
			
		||||
          <Path>D:\vioinput\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="8">
 | 
			
		||||
          <Path>D:\viorng\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="9">
 | 
			
		||||
          <Path>D:\vioscsi\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="10">
 | 
			
		||||
          <Path>D:\vioserial\w10\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
      </DriverPaths>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="generalize"/>
 | 
			
		||||
  <settings pass="specialize">
 | 
			
		||||
    <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <RunSynchronous>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <Path>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <Path>netsh.exe advfirewall firewall set rule group="Remote Desktop" new enable=Yes</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <Path>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>4</Order>
 | 
			
		||||
          <Path>fsutil.exe behavior set disableLastAccess 1</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>5</Order>
 | 
			
		||||
          <Path>reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>6</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>7</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>8</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>9</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>10</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>11</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>12</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>13</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>14</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>15</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>16</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>17</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>18</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>19</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>20</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>21</Order>
 | 
			
		||||
          <Path>reg.exe unload "HKU\mount"</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>22</Order>
 | 
			
		||||
          <Path>reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
      </RunSynchronous>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="auditSystem"/>
 | 
			
		||||
  <settings pass="auditUser"/>
 | 
			
		||||
  <settings pass="oobeSystem">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <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">
 | 
			
		||||
      <UserAccounts>
 | 
			
		||||
        <LocalAccounts>
 | 
			
		||||
          <LocalAccount wcm:action="add">
 | 
			
		||||
            <Name>Docker</Name>
 | 
			
		||||
            <Group>Administrators</Group>
 | 
			
		||||
            <Password>
 | 
			
		||||
              <Value/>
 | 
			
		||||
              <PlainText>true</PlainText>
 | 
			
		||||
            </Password>
 | 
			
		||||
          </LocalAccount>
 | 
			
		||||
        </LocalAccounts>
 | 
			
		||||
        <AdministratorPassword>
 | 
			
		||||
          <Value>password</Value>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </AdministratorPassword>
 | 
			
		||||
      </UserAccounts>
 | 
			
		||||
      <AutoLogon>
 | 
			
		||||
        <Username>Docker</Username>
 | 
			
		||||
        <Enabled>true</Enabled>
 | 
			
		||||
        <LogonCount>1</LogonCount>
 | 
			
		||||
        <Password>
 | 
			
		||||
          <Value/>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </Password>
 | 
			
		||||
      </AutoLogon>
 | 
			
		||||
      <OOBE>
 | 
			
		||||
        <ProtectYourPC>3</ProtectYourPC>
 | 
			
		||||
        <HideEULAPage>true</HideEULAPage>
 | 
			
		||||
        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
 | 
			
		||||
      </OOBE>
 | 
			
		||||
      <FirstLogonCommands>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <RequiresUserInput>false</RequiresUserInput>
 | 
			
		||||
          <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
 | 
			
		||||
          <Description>Password Never Expires</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
 | 
			
		||||
          <Description>Install VirtIO drivers</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
      </FirstLogonCommands>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
</unattend>
 | 
			
		||||
							
								
								
									
										283
									
								
								assets/win11x64.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										283
									
								
								assets/win11x64.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,283 @@
 | 
			
		||||
<?xml version="1.0"?>
 | 
			
		||||
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
 | 
			
		||||
  <settings pass="offlineServicing"/>
 | 
			
		||||
  <settings pass="windowsPE">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SetupUILanguage>
 | 
			
		||||
        <UILanguage>en-US</UILanguage>
 | 
			
		||||
      </SetupUILanguage>
 | 
			
		||||
      <InputLocale>0409:00000409</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">
 | 
			
		||||
      <DiskConfiguration>
 | 
			
		||||
        <Disk wcm:action="add">
 | 
			
		||||
          <DiskID>0</DiskID>
 | 
			
		||||
          <WillWipeDisk>true</WillWipeDisk>
 | 
			
		||||
          <CreatePartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Size>300</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <Type>EFI</Type>
 | 
			
		||||
              <Size>100</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Microsoft reserved partition (MSR) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <Type>MSR</Type>
 | 
			
		||||
              <Size>128</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Extend>true</Extend>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
          </CreatePartitions>
 | 
			
		||||
          <ModifyPartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <PartitionID>1</PartitionID>
 | 
			
		||||
              <Label>WINRE</Label>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
              <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <PartitionID>2</PartitionID>
 | 
			
		||||
              <Label>System</Label>
 | 
			
		||||
              <Format>FAT32</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- MSR partition does not need to be modified -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <PartitionID>3</PartitionID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <PartitionID>4</PartitionID>
 | 
			
		||||
              <Label>Windows</Label>
 | 
			
		||||
              <Letter>C</Letter>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
          </ModifyPartitions>
 | 
			
		||||
        </Disk>
 | 
			
		||||
      </DiskConfiguration>
 | 
			
		||||
      <ImageInstall>
 | 
			
		||||
        <OSImage>
 | 
			
		||||
          <InstallTo>
 | 
			
		||||
            <DiskID>0</DiskID>
 | 
			
		||||
            <PartitionID>4</PartitionID>
 | 
			
		||||
          </InstallTo>
 | 
			
		||||
          <InstallToAvailablePartition>false</InstallToAvailablePartition>
 | 
			
		||||
        </OSImage>
 | 
			
		||||
      </ImageInstall>
 | 
			
		||||
      <UserData>
 | 
			
		||||
        <ProductKey>
 | 
			
		||||
          <Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
 | 
			
		||||
        </ProductKey>
 | 
			
		||||
        <AcceptEula>true</AcceptEula>
 | 
			
		||||
      </UserData>
 | 
			
		||||
      <EnableFirewall>false</EnableFirewall>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DriverPaths>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="1">
 | 
			
		||||
          <Path>D:\viostor\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="2">
 | 
			
		||||
          <Path>D:\NetKVM\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="3">
 | 
			
		||||
          <Path>D:\Balloon\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="4">
 | 
			
		||||
          <Path>D:\pvpanic\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="5">
 | 
			
		||||
          <Path>D:\qemupciserial\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="6">
 | 
			
		||||
          <Path>D:\qxldod\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="7">
 | 
			
		||||
          <Path>D:\vioinput\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="8">
 | 
			
		||||
          <Path>D:\viorng\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="9">
 | 
			
		||||
          <Path>D:\vioscsi\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="10">
 | 
			
		||||
          <Path>D:\vioserial\w11\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
      </DriverPaths>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="generalize"/>
 | 
			
		||||
  <settings pass="specialize">
 | 
			
		||||
    <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <RunSynchronous>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <Path>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <Path>netsh.exe advfirewall firewall set rule group="Remote Desktop" new enable=Yes</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <Path>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>4</Order>
 | 
			
		||||
          <Path>fsutil.exe behavior set disableLastAccess 1</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>5</Order>
 | 
			
		||||
          <Path>reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>6</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>7</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>8</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>9</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>10</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>11</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>12</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>13</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>14</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>15</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>16</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>17</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>18</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>19</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>20</Order>
 | 
			
		||||
          <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>21</Order>
 | 
			
		||||
          <Path>reg.exe unload "HKU\mount"</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
        <RunSynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>22</Order>
 | 
			
		||||
          <Path>reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 0 /f</Path>
 | 
			
		||||
        </RunSynchronousCommand>
 | 
			
		||||
      </RunSynchronous>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="auditSystem"/>
 | 
			
		||||
  <settings pass="auditUser"/>
 | 
			
		||||
  <settings pass="oobeSystem">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <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">
 | 
			
		||||
      <UserAccounts>
 | 
			
		||||
        <LocalAccounts>
 | 
			
		||||
          <LocalAccount wcm:action="add">
 | 
			
		||||
            <Name>Docker</Name>
 | 
			
		||||
            <Group>Administrators</Group>
 | 
			
		||||
            <Password>
 | 
			
		||||
              <Value/>
 | 
			
		||||
              <PlainText>true</PlainText>
 | 
			
		||||
            </Password>
 | 
			
		||||
          </LocalAccount>
 | 
			
		||||
        </LocalAccounts>
 | 
			
		||||
        <AdministratorPassword>
 | 
			
		||||
          <Value>password</Value>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </AdministratorPassword>
 | 
			
		||||
      </UserAccounts>
 | 
			
		||||
      <AutoLogon>
 | 
			
		||||
        <Username>Docker</Username>
 | 
			
		||||
        <Enabled>true</Enabled>
 | 
			
		||||
        <LogonCount>1</LogonCount>
 | 
			
		||||
        <Password>
 | 
			
		||||
          <Value/>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </Password>
 | 
			
		||||
      </AutoLogon>
 | 
			
		||||
      <OOBE>
 | 
			
		||||
        <ProtectYourPC>3</ProtectYourPC>
 | 
			
		||||
        <HideEULAPage>true</HideEULAPage>
 | 
			
		||||
        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
 | 
			
		||||
      </OOBE>
 | 
			
		||||
      <FirstLogonCommands>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <RequiresUserInput>false</RequiresUserInput>
 | 
			
		||||
          <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
 | 
			
		||||
          <Description>Password Never Expires</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
 | 
			
		||||
          <Description>Install VirtIO drivers</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
      </FirstLogonCommands>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
</unattend>
 | 
			
		||||
							
								
								
									
										241
									
								
								assets/win2016-eval.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										241
									
								
								assets/win2016-eval.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,241 @@
 | 
			
		||||
<?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="windowsPE">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SetupUILanguage>
 | 
			
		||||
        <UILanguage>en-US</UILanguage>
 | 
			
		||||
      </SetupUILanguage>
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UILanguageFallback>en-US</UILanguageFallback>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DiskConfiguration>
 | 
			
		||||
        <Disk wcm:action="add">
 | 
			
		||||
          <DiskID>0</DiskID>
 | 
			
		||||
          <WillWipeDisk>true</WillWipeDisk>
 | 
			
		||||
          <CreatePartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Size>300</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <Type>EFI</Type>
 | 
			
		||||
              <Size>100</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Microsoft reserved partition (MSR) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <Type>MSR</Type>
 | 
			
		||||
              <Size>128</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Extend>true</Extend>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
          </CreatePartitions>
 | 
			
		||||
          <ModifyPartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <PartitionID>1</PartitionID>
 | 
			
		||||
              <Label>WINRE</Label>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
              <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <PartitionID>2</PartitionID>
 | 
			
		||||
              <Label>System</Label>
 | 
			
		||||
              <Format>FAT32</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- MSR partition does not need to be modified -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <PartitionID>3</PartitionID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <PartitionID>4</PartitionID>
 | 
			
		||||
              <Label>Windows</Label>
 | 
			
		||||
              <Letter>C</Letter>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
          </ModifyPartitions>
 | 
			
		||||
        </Disk>
 | 
			
		||||
      </DiskConfiguration>
 | 
			
		||||
      <ImageInstall>
 | 
			
		||||
        <OSImage>
 | 
			
		||||
          <InstallFrom>
 | 
			
		||||
            <MetaData wcm:action="add">
 | 
			
		||||
              <Key>/IMAGE/NAME</Key>
 | 
			
		||||
              <Value>Windows Server 2016 SERVERSTANDARD</Value>
 | 
			
		||||
            </MetaData>
 | 
			
		||||
          </InstallFrom>
 | 
			
		||||
          <InstallTo>
 | 
			
		||||
            <DiskID>0</DiskID>
 | 
			
		||||
            <PartitionID>4</PartitionID>
 | 
			
		||||
          </InstallTo>
 | 
			
		||||
          <WillShowUI>OnError</WillShowUI>
 | 
			
		||||
          <InstallToAvailablePartition>false</InstallToAvailablePartition>
 | 
			
		||||
        </OSImage>
 | 
			
		||||
      </ImageInstall>
 | 
			
		||||
      <UserData>
 | 
			
		||||
        <AcceptEula>true</AcceptEula>
 | 
			
		||||
        <FullName>Docker</FullName>
 | 
			
		||||
        <Organization>Organization</Organization>
 | 
			
		||||
        <ProductKey/>
 | 
			
		||||
      </UserData>
 | 
			
		||||
      <EnableFirewall>false</EnableFirewall>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DriverPaths>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="1">
 | 
			
		||||
            <Path>D:\viostor\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="2">
 | 
			
		||||
            <Path>D:\NetKVM\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="3">
 | 
			
		||||
            <Path>D:\Balloon\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="4">
 | 
			
		||||
            <Path>D:\pvpanic\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="5">
 | 
			
		||||
            <Path>D:\qemupciserial\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="6">
 | 
			
		||||
            <Path>D:\qxldod\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="7">
 | 
			
		||||
            <Path>D:\vioinput\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="8">
 | 
			
		||||
            <Path>D:\viorng\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="9">
 | 
			
		||||
            <Path>D:\vioscsi\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="10">
 | 
			
		||||
            <Path>D:\vioserial\2k16\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
      </DriverPaths>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="offlineServicing">
 | 
			
		||||
    <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <EnableLUA>false</EnableLUA>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="generalize">
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipRearm>1</SkipRearm>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="specialize">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UILanguageFallback>en-US</UILanguageFallback>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipAutoActivation>true</SkipAutoActivation>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <CEIPEnabled>0</CEIPEnabled>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-ServerManager-SvrMgrNc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DoNotOpenServerManagerAtLogon>true</DoNotOpenServerManagerAtLogon>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-OutOfBoxExperience" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DoNotOpenInitialConfigurationTasksAtLogon>true</DoNotOpenInitialConfigurationTasksAtLogon>
 | 
			
		||||
    </component>    
 | 
			
		||||
    <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <fDenyTSConnections>false</fDenyTSConnections>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAuthentication>0</UserAuthentication>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <FirewallGroups>
 | 
			
		||||
        <FirewallGroup wcm:action="add" wcm:keyValue="RemoteDesktop">
 | 
			
		||||
          <Active>true</Active>
 | 
			
		||||
          <Group>Remote Desktop</Group>
 | 
			
		||||
          <Profile>all</Profile>
 | 
			
		||||
        </FirewallGroup>
 | 
			
		||||
      </FirewallGroups>
 | 
			
		||||
    </component>    
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="oobeSystem">
 | 
			
		||||
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAccounts>
 | 
			
		||||
        <LocalAccounts>
 | 
			
		||||
          <LocalAccount wcm:action="add">
 | 
			
		||||
            <Name>Docker</Name>
 | 
			
		||||
            <Group>Administrators</Group>
 | 
			
		||||
            <Password>
 | 
			
		||||
              <Value/>
 | 
			
		||||
              <PlainText>true</PlainText>
 | 
			
		||||
            </Password>
 | 
			
		||||
          </LocalAccount>
 | 
			
		||||
        </LocalAccounts>
 | 
			
		||||
        <AdministratorPassword>
 | 
			
		||||
          <Value>password</Value>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </AdministratorPassword>
 | 
			
		||||
      </UserAccounts>
 | 
			
		||||
      <AutoLogon>
 | 
			
		||||
        <Username>Docker</Username>
 | 
			
		||||
        <Enabled>true</Enabled>
 | 
			
		||||
        <LogonCount>1</LogonCount>
 | 
			
		||||
        <Password>
 | 
			
		||||
          <Value/>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </Password>
 | 
			
		||||
      </AutoLogon>
 | 
			
		||||
      <OOBE>
 | 
			
		||||
        <HideEULAPage>true</HideEULAPage>
 | 
			
		||||
        <HideLocalAccountScreen>true</HideLocalAccountScreen>
 | 
			
		||||
        <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
 | 
			
		||||
        <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
 | 
			
		||||
        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
 | 
			
		||||
        <NetworkLocation>Home</NetworkLocation>
 | 
			
		||||
        <ProtectYourPC>1</ProtectYourPC>
 | 
			
		||||
        <SkipMachineOOBE>true</SkipMachineOOBE>
 | 
			
		||||
        <SkipUserOOBE>true</SkipUserOOBE>
 | 
			
		||||
      </OOBE>
 | 
			
		||||
      <RegisteredOrganization>Organization</RegisteredOrganization>
 | 
			
		||||
      <RegisteredOwner>Owner</RegisteredOwner>
 | 
			
		||||
      <FirstLogonCommands>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <RequiresUserInput>false</RequiresUserInput>
 | 
			
		||||
          <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
 | 
			
		||||
          <Description>Password Never Expires</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
 | 
			
		||||
          <Description>Install VirtIO drivers</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
      </FirstLogonCommands>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
</unattend>
 | 
			
		||||
							
								
								
									
										241
									
								
								assets/win2019-eval.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										241
									
								
								assets/win2019-eval.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,241 @@
 | 
			
		||||
<?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="windowsPE">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SetupUILanguage>
 | 
			
		||||
        <UILanguage>en-US</UILanguage>
 | 
			
		||||
      </SetupUILanguage>
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UILanguageFallback>en-US</UILanguageFallback>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DiskConfiguration>
 | 
			
		||||
        <Disk wcm:action="add">
 | 
			
		||||
          <DiskID>0</DiskID>
 | 
			
		||||
          <WillWipeDisk>true</WillWipeDisk>
 | 
			
		||||
          <CreatePartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Size>300</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <Type>EFI</Type>
 | 
			
		||||
              <Size>100</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Microsoft reserved partition (MSR) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <Type>MSR</Type>
 | 
			
		||||
              <Size>128</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Extend>true</Extend>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
          </CreatePartitions>
 | 
			
		||||
          <ModifyPartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <PartitionID>1</PartitionID>
 | 
			
		||||
              <Label>WINRE</Label>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
              <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <PartitionID>2</PartitionID>
 | 
			
		||||
              <Label>System</Label>
 | 
			
		||||
              <Format>FAT32</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- MSR partition does not need to be modified -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <PartitionID>3</PartitionID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <PartitionID>4</PartitionID>
 | 
			
		||||
              <Label>Windows</Label>
 | 
			
		||||
              <Letter>C</Letter>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
          </ModifyPartitions>
 | 
			
		||||
        </Disk>
 | 
			
		||||
      </DiskConfiguration>
 | 
			
		||||
      <ImageInstall>
 | 
			
		||||
        <OSImage>
 | 
			
		||||
          <InstallFrom>
 | 
			
		||||
            <MetaData wcm:action="add">
 | 
			
		||||
              <Key>/IMAGE/NAME</Key>
 | 
			
		||||
              <Value>Windows Server 2019 SERVERSTANDARD</Value>
 | 
			
		||||
            </MetaData>
 | 
			
		||||
          </InstallFrom>
 | 
			
		||||
          <InstallTo>
 | 
			
		||||
            <DiskID>0</DiskID>
 | 
			
		||||
            <PartitionID>4</PartitionID>
 | 
			
		||||
          </InstallTo>
 | 
			
		||||
          <WillShowUI>OnError</WillShowUI>
 | 
			
		||||
          <InstallToAvailablePartition>false</InstallToAvailablePartition>
 | 
			
		||||
        </OSImage>
 | 
			
		||||
      </ImageInstall>
 | 
			
		||||
      <UserData>
 | 
			
		||||
        <AcceptEula>true</AcceptEula>
 | 
			
		||||
        <FullName>Docker</FullName>
 | 
			
		||||
        <Organization>Organization</Organization>
 | 
			
		||||
        <ProductKey/>
 | 
			
		||||
      </UserData>
 | 
			
		||||
      <EnableFirewall>false</EnableFirewall>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DriverPaths>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="1">
 | 
			
		||||
            <Path>D:\viostor\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="2">
 | 
			
		||||
            <Path>D:\NetKVM\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="3">
 | 
			
		||||
            <Path>D:\Balloon\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="4">
 | 
			
		||||
            <Path>D:\pvpanic\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="5">
 | 
			
		||||
            <Path>D:\qemupciserial\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="6">
 | 
			
		||||
            <Path>D:\qxldod\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="7">
 | 
			
		||||
            <Path>D:\vioinput\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="8">
 | 
			
		||||
            <Path>D:\viorng\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="9">
 | 
			
		||||
            <Path>D:\vioscsi\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="10">
 | 
			
		||||
            <Path>D:\vioserial\2k19\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
      </DriverPaths>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="offlineServicing">
 | 
			
		||||
    <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <EnableLUA>false</EnableLUA>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="generalize">
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipRearm>1</SkipRearm>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="specialize">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UILanguageFallback>en-US</UILanguageFallback>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipAutoActivation>true</SkipAutoActivation>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <CEIPEnabled>0</CEIPEnabled>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-ServerManager-SvrMgrNc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DoNotOpenServerManagerAtLogon>true</DoNotOpenServerManagerAtLogon>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-OutOfBoxExperience" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DoNotOpenInitialConfigurationTasksAtLogon>true</DoNotOpenInitialConfigurationTasksAtLogon>
 | 
			
		||||
    </component>    
 | 
			
		||||
    <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <fDenyTSConnections>false</fDenyTSConnections>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAuthentication>0</UserAuthentication>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <FirewallGroups>
 | 
			
		||||
        <FirewallGroup wcm:action="add" wcm:keyValue="RemoteDesktop">
 | 
			
		||||
          <Active>true</Active>
 | 
			
		||||
          <Group>Remote Desktop</Group>
 | 
			
		||||
          <Profile>all</Profile>
 | 
			
		||||
        </FirewallGroup>
 | 
			
		||||
      </FirewallGroups>
 | 
			
		||||
    </component>    
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="oobeSystem">
 | 
			
		||||
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAccounts>
 | 
			
		||||
        <LocalAccounts>
 | 
			
		||||
          <LocalAccount wcm:action="add">
 | 
			
		||||
            <Name>Docker</Name>
 | 
			
		||||
            <Group>Administrators</Group>
 | 
			
		||||
            <Password>
 | 
			
		||||
              <Value/>
 | 
			
		||||
              <PlainText>true</PlainText>
 | 
			
		||||
            </Password>
 | 
			
		||||
          </LocalAccount>
 | 
			
		||||
        </LocalAccounts>
 | 
			
		||||
        <AdministratorPassword>
 | 
			
		||||
          <Value>password</Value>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </AdministratorPassword>
 | 
			
		||||
      </UserAccounts>
 | 
			
		||||
      <AutoLogon>
 | 
			
		||||
        <Username>Docker</Username>
 | 
			
		||||
        <Enabled>true</Enabled>
 | 
			
		||||
        <LogonCount>1</LogonCount>
 | 
			
		||||
        <Password>
 | 
			
		||||
          <Value/>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </Password>
 | 
			
		||||
      </AutoLogon>
 | 
			
		||||
      <OOBE>
 | 
			
		||||
        <HideEULAPage>true</HideEULAPage>
 | 
			
		||||
        <HideLocalAccountScreen>true</HideLocalAccountScreen>
 | 
			
		||||
        <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
 | 
			
		||||
        <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
 | 
			
		||||
        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
 | 
			
		||||
        <NetworkLocation>Home</NetworkLocation>
 | 
			
		||||
        <ProtectYourPC>1</ProtectYourPC>
 | 
			
		||||
        <SkipMachineOOBE>true</SkipMachineOOBE>
 | 
			
		||||
        <SkipUserOOBE>true</SkipUserOOBE>
 | 
			
		||||
      </OOBE>
 | 
			
		||||
      <RegisteredOrganization>Organization</RegisteredOrganization>
 | 
			
		||||
      <RegisteredOwner>Owner</RegisteredOwner>
 | 
			
		||||
      <FirstLogonCommands>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <RequiresUserInput>false</RequiresUserInput>
 | 
			
		||||
          <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
 | 
			
		||||
          <Description>Password Never Expires</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
 | 
			
		||||
          <Description>Install VirtIO drivers</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
      </FirstLogonCommands>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
</unattend>
 | 
			
		||||
							
								
								
									
										241
									
								
								assets/win2022-eval.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										241
									
								
								assets/win2022-eval.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,241 @@
 | 
			
		||||
<?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="windowsPE">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SetupUILanguage>
 | 
			
		||||
        <UILanguage>en-US</UILanguage>
 | 
			
		||||
      </SetupUILanguage>
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UILanguageFallback>en-US</UILanguageFallback>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DiskConfiguration>
 | 
			
		||||
        <Disk wcm:action="add">
 | 
			
		||||
          <DiskID>0</DiskID>
 | 
			
		||||
          <WillWipeDisk>true</WillWipeDisk>
 | 
			
		||||
          <CreatePartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Size>300</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <Type>EFI</Type>
 | 
			
		||||
              <Size>100</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Microsoft reserved partition (MSR) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <Type>MSR</Type>
 | 
			
		||||
              <Size>128</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Extend>true</Extend>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
          </CreatePartitions>
 | 
			
		||||
          <ModifyPartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <PartitionID>1</PartitionID>
 | 
			
		||||
              <Label>WINRE</Label>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
              <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <PartitionID>2</PartitionID>
 | 
			
		||||
              <Label>System</Label>
 | 
			
		||||
              <Format>FAT32</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- MSR partition does not need to be modified -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <PartitionID>3</PartitionID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <PartitionID>4</PartitionID>
 | 
			
		||||
              <Label>Windows</Label>
 | 
			
		||||
              <Letter>C</Letter>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
          </ModifyPartitions>
 | 
			
		||||
        </Disk>
 | 
			
		||||
      </DiskConfiguration>
 | 
			
		||||
      <ImageInstall>
 | 
			
		||||
        <OSImage>
 | 
			
		||||
          <InstallFrom>
 | 
			
		||||
            <MetaData wcm:action="add">
 | 
			
		||||
              <Key>/IMAGE/NAME</Key>
 | 
			
		||||
              <Value>Windows Server 2022 SERVERSTANDARD</Value>
 | 
			
		||||
            </MetaData>
 | 
			
		||||
          </InstallFrom>
 | 
			
		||||
          <InstallTo>
 | 
			
		||||
            <DiskID>0</DiskID>
 | 
			
		||||
            <PartitionID>4</PartitionID>
 | 
			
		||||
          </InstallTo>
 | 
			
		||||
          <WillShowUI>OnError</WillShowUI>
 | 
			
		||||
          <InstallToAvailablePartition>false</InstallToAvailablePartition>
 | 
			
		||||
        </OSImage>
 | 
			
		||||
      </ImageInstall>
 | 
			
		||||
      <UserData>
 | 
			
		||||
        <AcceptEula>true</AcceptEula>
 | 
			
		||||
        <FullName>Docker</FullName>
 | 
			
		||||
        <Organization>Organization</Organization>
 | 
			
		||||
        <ProductKey/>
 | 
			
		||||
      </UserData>
 | 
			
		||||
      <EnableFirewall>false</EnableFirewall>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DriverPaths>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="1">
 | 
			
		||||
          <Path>D:\viostor\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="2">
 | 
			
		||||
          <Path>D:\NetKVM\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="3">
 | 
			
		||||
          <Path>D:\Balloon\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="4">
 | 
			
		||||
          <Path>D:\pvpanic\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="5">
 | 
			
		||||
          <Path>D:\qemupciserial\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="6">
 | 
			
		||||
          <Path>D:\qxldod\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="7">
 | 
			
		||||
          <Path>D:\vioinput\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="8">
 | 
			
		||||
          <Path>D:\viorng\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="9">
 | 
			
		||||
          <Path>D:\vioscsi\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="10">
 | 
			
		||||
          <Path>D:\vioserial\2k22\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
      </DriverPaths>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="offlineServicing">
 | 
			
		||||
    <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <EnableLUA>false</EnableLUA>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="generalize">
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipRearm>1</SkipRearm>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="specialize">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UILanguageFallback>en-US</UILanguageFallback>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipAutoActivation>true</SkipAutoActivation>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <CEIPEnabled>0</CEIPEnabled>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-ServerManager-SvrMgrNc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DoNotOpenServerManagerAtLogon>true</DoNotOpenServerManagerAtLogon>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-OutOfBoxExperience" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DoNotOpenInitialConfigurationTasksAtLogon>true</DoNotOpenInitialConfigurationTasksAtLogon>
 | 
			
		||||
    </component>    
 | 
			
		||||
    <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <fDenyTSConnections>false</fDenyTSConnections>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAuthentication>0</UserAuthentication>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <FirewallGroups>
 | 
			
		||||
        <FirewallGroup wcm:action="add" wcm:keyValue="RemoteDesktop">
 | 
			
		||||
          <Active>true</Active>
 | 
			
		||||
          <Group>Remote Desktop</Group>
 | 
			
		||||
          <Profile>all</Profile>
 | 
			
		||||
        </FirewallGroup>
 | 
			
		||||
      </FirewallGroups>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="oobeSystem">
 | 
			
		||||
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAccounts>
 | 
			
		||||
        <LocalAccounts>
 | 
			
		||||
          <LocalAccount wcm:action="add">
 | 
			
		||||
            <Name>Docker</Name>
 | 
			
		||||
            <Group>Administrators</Group>
 | 
			
		||||
            <Password>
 | 
			
		||||
              <Value/>
 | 
			
		||||
              <PlainText>true</PlainText>
 | 
			
		||||
            </Password>
 | 
			
		||||
          </LocalAccount>
 | 
			
		||||
        </LocalAccounts>
 | 
			
		||||
        <AdministratorPassword>
 | 
			
		||||
          <Value>password</Value>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </AdministratorPassword>
 | 
			
		||||
      </UserAccounts>
 | 
			
		||||
      <AutoLogon>
 | 
			
		||||
        <Username>Docker</Username>
 | 
			
		||||
        <Enabled>true</Enabled>
 | 
			
		||||
        <LogonCount>1</LogonCount>
 | 
			
		||||
        <Password>
 | 
			
		||||
          <Value/>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </Password>
 | 
			
		||||
      </AutoLogon>
 | 
			
		||||
      <OOBE>
 | 
			
		||||
        <HideEULAPage>true</HideEULAPage>
 | 
			
		||||
        <HideLocalAccountScreen>true</HideLocalAccountScreen>
 | 
			
		||||
        <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
 | 
			
		||||
        <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
 | 
			
		||||
        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
 | 
			
		||||
        <NetworkLocation>Home</NetworkLocation>
 | 
			
		||||
        <ProtectYourPC>1</ProtectYourPC>
 | 
			
		||||
        <SkipMachineOOBE>true</SkipMachineOOBE>
 | 
			
		||||
        <SkipUserOOBE>true</SkipUserOOBE>
 | 
			
		||||
      </OOBE>
 | 
			
		||||
      <RegisteredOrganization>Organization</RegisteredOrganization>
 | 
			
		||||
      <RegisteredOwner>Owner</RegisteredOwner>
 | 
			
		||||
      <FirstLogonCommands>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <RequiresUserInput>false</RequiresUserInput>
 | 
			
		||||
          <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
 | 
			
		||||
          <Description>Password Never Expires</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
 | 
			
		||||
          <Description>Install VirtIO drivers</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
      </FirstLogonCommands>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
</unattend>
 | 
			
		||||
							
								
								
									
										204
									
								
								assets/win7x64-ultimate.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										204
									
								
								assets/win7x64-ultimate.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,204 @@
 | 
			
		||||
<?xml version="1.0"?>
 | 
			
		||||
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
 | 
			
		||||
  <settings pass="offlineServicing"/>
 | 
			
		||||
  <settings pass="windowsPE">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SetupUILanguage>
 | 
			
		||||
        <UILanguage>en-US</UILanguage>
 | 
			
		||||
      </SetupUILanguage>
 | 
			
		||||
      <InputLocale>0409:00000409</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">
 | 
			
		||||
      <DiskConfiguration>
 | 
			
		||||
        <Disk wcm:action="add">
 | 
			
		||||
          <DiskID>0</DiskID>
 | 
			
		||||
          <WillWipeDisk>true</WillWipeDisk>
 | 
			
		||||
          <CreatePartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Size>300</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <Type>EFI</Type>
 | 
			
		||||
              <Size>100</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Microsoft reserved partition (MSR) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <Type>MSR</Type>
 | 
			
		||||
              <Size>128</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Extend>true</Extend>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
          </CreatePartitions>
 | 
			
		||||
          <ModifyPartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <PartitionID>1</PartitionID>
 | 
			
		||||
              <Label>WINRE</Label>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <PartitionID>2</PartitionID>
 | 
			
		||||
              <Label>System</Label>
 | 
			
		||||
              <Format>FAT32</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- MSR partition does not need to be modified -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <PartitionID>3</PartitionID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <PartitionID>4</PartitionID>
 | 
			
		||||
              <Label>Windows</Label>
 | 
			
		||||
              <Letter>C</Letter>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
              <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
          </ModifyPartitions>
 | 
			
		||||
        </Disk>
 | 
			
		||||
      </DiskConfiguration>
 | 
			
		||||
      <ImageInstall>
 | 
			
		||||
        <OSImage>
 | 
			
		||||
          <InstallTo>
 | 
			
		||||
            <DiskID>0</DiskID>
 | 
			
		||||
            <PartitionID>4</PartitionID>
 | 
			
		||||
          </InstallTo>
 | 
			
		||||
          <InstallToAvailablePartition>false</InstallToAvailablePartition>
 | 
			
		||||
        </OSImage>
 | 
			
		||||
      </ImageInstall>
 | 
			
		||||
      <UserData>
 | 
			
		||||
        <ProductKey>
 | 
			
		||||
          <Key>FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</Key>
 | 
			
		||||
          <WillShowUI>Never</WillShowUI>
 | 
			
		||||
        </ProductKey>
 | 
			
		||||
        <AcceptEula>true</AcceptEula>
 | 
			
		||||
        <FullName>Docker</FullName>
 | 
			
		||||
        <Organization/>
 | 
			
		||||
      </UserData>
 | 
			
		||||
      <EnableFirewall>false</EnableFirewall>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DriverPaths>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="1">
 | 
			
		||||
          <Path>D:\viostor\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="2">
 | 
			
		||||
          <Path>D:\NetKVM\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="3">
 | 
			
		||||
          <Path>D:\Balloon\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="4">
 | 
			
		||||
          <Path>D:\pvpanic\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="5">
 | 
			
		||||
          <Path>D:\qemupciserial\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="6">
 | 
			
		||||
          <Path>D:\qxldod\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="7">
 | 
			
		||||
          <Path>D:\vioinput\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="8">
 | 
			
		||||
          <Path>D:\viorng\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="9">
 | 
			
		||||
          <Path>D:\vioscsi\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="10">
 | 
			
		||||
          <Path>D:\vioserial\w7\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
      </DriverPaths>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="specialize">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipAutoActivation>true</SkipAutoActivation>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <CEIPEnabled>0</CEIPEnabled>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="oobeSystem">
 | 
			
		||||
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAccounts>
 | 
			
		||||
        <LocalAccounts>
 | 
			
		||||
          <LocalAccount wcm:action="add">
 | 
			
		||||
            <Name>Docker</Name>
 | 
			
		||||
            <Group>Administrators</Group>
 | 
			
		||||
            <Password>
 | 
			
		||||
              <Value/>
 | 
			
		||||
              <PlainText>true</PlainText>
 | 
			
		||||
            </Password>
 | 
			
		||||
          </LocalAccount>
 | 
			
		||||
        </LocalAccounts>
 | 
			
		||||
        <AdministratorPassword>
 | 
			
		||||
          <Value>password</Value>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </AdministratorPassword>
 | 
			
		||||
      </UserAccounts>
 | 
			
		||||
      <AutoLogon>
 | 
			
		||||
        <Username>Docker</Username>
 | 
			
		||||
        <Enabled>true</Enabled>
 | 
			
		||||
        <LogonCount>1</LogonCount>
 | 
			
		||||
        <Password>
 | 
			
		||||
          <Value/>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </Password>
 | 
			
		||||
      </AutoLogon>
 | 
			
		||||
      <OOBE>
 | 
			
		||||
        <HideEULAPage>true</HideEULAPage>
 | 
			
		||||
        <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
 | 
			
		||||
        <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
 | 
			
		||||
        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
 | 
			
		||||
        <NetworkLocation>Home</NetworkLocation>
 | 
			
		||||
        <ProtectYourPC>1</ProtectYourPC>
 | 
			
		||||
        <SkipUserOOBE>true</SkipUserOOBE>
 | 
			
		||||
        <SkipMachineOOBE>true</SkipMachineOOBE>
 | 
			
		||||
      </OOBE>
 | 
			
		||||
      <RegisteredOrganization/>
 | 
			
		||||
      <RegisteredOwner>Docker</RegisteredOwner>
 | 
			
		||||
      <FirstLogonCommands>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <RequiresUserInput>false</RequiresUserInput>
 | 
			
		||||
          <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
 | 
			
		||||
          <Description>Password Never Expires</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
 | 
			
		||||
          <Description>Install VirtIO drivers</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
      </FirstLogonCommands>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
</unattend>
 | 
			
		||||
							
								
								
									
										204
									
								
								assets/win81x64.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										204
									
								
								assets/win81x64.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,204 @@
 | 
			
		||||
<?xml version="1.0"?>
 | 
			
		||||
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
 | 
			
		||||
  <settings pass="offlineServicing"/>
 | 
			
		||||
  <settings pass="windowsPE">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SetupUILanguage>
 | 
			
		||||
        <UILanguage>en-US</UILanguage>
 | 
			
		||||
      </SetupUILanguage>
 | 
			
		||||
      <InputLocale>0409:00000409</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">
 | 
			
		||||
      <DiskConfiguration>
 | 
			
		||||
        <Disk wcm:action="add">
 | 
			
		||||
          <DiskID>0</DiskID>
 | 
			
		||||
          <WillWipeDisk>true</WillWipeDisk>
 | 
			
		||||
          <CreatePartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Size>300</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <Type>EFI</Type>
 | 
			
		||||
              <Size>100</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Microsoft reserved partition (MSR) -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <Type>MSR</Type>
 | 
			
		||||
              <Size>128</Size>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <CreatePartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <Type>Primary</Type>
 | 
			
		||||
              <Extend>true</Extend>
 | 
			
		||||
            </CreatePartition>
 | 
			
		||||
          </CreatePartitions>
 | 
			
		||||
          <ModifyPartitions>
 | 
			
		||||
            <!-- Windows RE Tools partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>1</Order>
 | 
			
		||||
              <PartitionID>1</PartitionID>
 | 
			
		||||
              <Label>WINRE</Label>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- System partition (ESP) -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>2</Order>
 | 
			
		||||
              <PartitionID>2</PartitionID>
 | 
			
		||||
              <Label>System</Label>
 | 
			
		||||
              <Format>FAT32</Format>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- MSR partition does not need to be modified -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>3</Order>
 | 
			
		||||
              <PartitionID>3</PartitionID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
            <!-- Windows partition -->
 | 
			
		||||
            <ModifyPartition wcm:action="add">
 | 
			
		||||
              <Order>4</Order>
 | 
			
		||||
              <PartitionID>4</PartitionID>
 | 
			
		||||
              <Label>Windows</Label>
 | 
			
		||||
              <Letter>C</Letter>
 | 
			
		||||
              <Format>NTFS</Format>
 | 
			
		||||
              <TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
 | 
			
		||||
            </ModifyPartition>
 | 
			
		||||
          </ModifyPartitions>
 | 
			
		||||
        </Disk>
 | 
			
		||||
      </DiskConfiguration>
 | 
			
		||||
      <ImageInstall>
 | 
			
		||||
        <OSImage>
 | 
			
		||||
          <InstallTo>
 | 
			
		||||
            <DiskID>0</DiskID>
 | 
			
		||||
            <PartitionID>4</PartitionID>
 | 
			
		||||
          </InstallTo>
 | 
			
		||||
          <InstallToAvailablePartition>false</InstallToAvailablePartition>
 | 
			
		||||
        </OSImage>
 | 
			
		||||
      </ImageInstall>
 | 
			
		||||
      <UserData>
 | 
			
		||||
        <ProductKey>
 | 
			
		||||
          <Key>GCRJD-8NW9H-F2CDX-CCM8D-9D6T9</Key>
 | 
			
		||||
          <WillShowUI>Never</WillShowUI>
 | 
			
		||||
        </ProductKey>
 | 
			
		||||
        <AcceptEula>true</AcceptEula>
 | 
			
		||||
        <FullName>Docker</FullName>
 | 
			
		||||
        <Organization/>
 | 
			
		||||
      </UserData>
 | 
			
		||||
      <EnableFirewall>false</EnableFirewall>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <DriverPaths>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="1">
 | 
			
		||||
          <Path>D:\viostor\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="2">
 | 
			
		||||
          <Path>D:\NetKVM\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="3">
 | 
			
		||||
          <Path>D:\Balloon\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="4">
 | 
			
		||||
          <Path>D:\pvpanic\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="5">
 | 
			
		||||
          <Path>D:\qemupciserial\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="6">
 | 
			
		||||
          <Path>D:\qxldod\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="7">
 | 
			
		||||
          <Path>D:\vioinput\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="8">
 | 
			
		||||
          <Path>D:\viorng\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="9">
 | 
			
		||||
          <Path>D:\vioscsi\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
        <PathAndCredentials wcm:action="add" wcm:keyValue="10">
 | 
			
		||||
          <Path>D:\vioserial\w8.1\amd64</Path>
 | 
			
		||||
        </PathAndCredentials>
 | 
			
		||||
      </DriverPaths>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="specialize">
 | 
			
		||||
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <InputLocale>0409:00000409</InputLocale>
 | 
			
		||||
      <SystemLocale>en-US</SystemLocale>
 | 
			
		||||
      <UILanguage>en-US</UILanguage>
 | 
			
		||||
      <UserLocale>en-US</UserLocale>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <SkipAutoActivation>true</SkipAutoActivation>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <CEIPEnabled>0</CEIPEnabled>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
  <settings pass="oobeSystem">
 | 
			
		||||
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
 | 
			
		||||
      <UserAccounts>
 | 
			
		||||
        <LocalAccounts>
 | 
			
		||||
          <LocalAccount wcm:action="add">
 | 
			
		||||
            <Name>Docker</Name>
 | 
			
		||||
            <Group>Administrators</Group>
 | 
			
		||||
            <Password>
 | 
			
		||||
              <Value/>
 | 
			
		||||
              <PlainText>true</PlainText>
 | 
			
		||||
            </Password>
 | 
			
		||||
          </LocalAccount>
 | 
			
		||||
        </LocalAccounts>
 | 
			
		||||
        <AdministratorPassword>
 | 
			
		||||
          <Value>password</Value>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </AdministratorPassword>
 | 
			
		||||
      </UserAccounts>
 | 
			
		||||
      <AutoLogon>
 | 
			
		||||
        <Username>Docker</Username>
 | 
			
		||||
        <Enabled>true</Enabled>
 | 
			
		||||
        <LogonCount>1</LogonCount>
 | 
			
		||||
        <Password>
 | 
			
		||||
          <Value/>
 | 
			
		||||
          <PlainText>true</PlainText>
 | 
			
		||||
        </Password>
 | 
			
		||||
      </AutoLogon>
 | 
			
		||||
      <OOBE>
 | 
			
		||||
        <HideEULAPage>true</HideEULAPage>
 | 
			
		||||
        <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
 | 
			
		||||
        <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
 | 
			
		||||
        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
 | 
			
		||||
        <NetworkLocation>Home</NetworkLocation>
 | 
			
		||||
        <ProtectYourPC>1</ProtectYourPC>
 | 
			
		||||
        <SkipUserOOBE>true</SkipUserOOBE>
 | 
			
		||||
        <SkipMachineOOBE>true</SkipMachineOOBE>
 | 
			
		||||
      </OOBE>
 | 
			
		||||
      <RegisteredOrganization/>
 | 
			
		||||
      <RegisteredOwner>Docker</RegisteredOwner>
 | 
			
		||||
      <FirstLogonCommands>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>1</Order>
 | 
			
		||||
          <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>2</Order>
 | 
			
		||||
          <RequiresUserInput>false</RequiresUserInput>
 | 
			
		||||
          <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
 | 
			
		||||
          <Description>Password Never Expires</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
        <SynchronousCommand wcm:action="add">
 | 
			
		||||
          <Order>3</Order>
 | 
			
		||||
          <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
 | 
			
		||||
          <Description>Install VirtIO drivers</Description>
 | 
			
		||||
        </SynchronousCommand>
 | 
			
		||||
      </FirstLogonCommands>
 | 
			
		||||
    </component>
 | 
			
		||||
  </settings>
 | 
			
		||||
</unattend>
 | 
			
		||||
							
								
								
									
										65
									
								
								readme.md
									
									
									
									
									
								
							
							
						
						
									
										65
									
								
								readme.md
									
									
									
									
									
								
							@ -50,29 +50,21 @@ docker run -it --rm -e "VERSION=win11x64" -p 8006:8006 --device=/dev/kvm --cap-a
 | 
			
		||||
 | 
			
		||||
## FAQ
 | 
			
		||||
 | 
			
		||||
  * ### How do I perform the installation?
 | 
			
		||||
  * ### How do I use it?
 | 
			
		||||
 | 
			
		||||
    - Start the container and wait until the ISO download is completed. If needed, you can view this progress in the Docker log. Wait until you see the message ```BdsDxe: starting Boot```.
 | 
			
		||||
    Very simple! These are the steps:
 | 
			
		||||
    
 | 
			
		||||
    - Start the container and get some coffee, it will start downloading the ISO.
 | 
			
		||||
 | 
			
		||||
    - Connect to port 8006 of the container in your web browser.
 | 
			
		||||
    - Connect to port 8006 of the container in your web browser and wait untill you see the screen.
 | 
			
		||||
 | 
			
		||||
    - Start the installation by clicking ```Install now```. On the next screen, press 'OK' when prompted to ```Load driver``` and select the ```VirtIO SCSI``` driver from the list that matches your Windows version. So for Windows 11, select ```D:\amd64\w11\vioscsi.inf``` and click 'Next'.
 | 
			
		||||
    - Sit back and relax while all the magic happens, the whole installation will be performed fully automatic.
 | 
			
		||||
 | 
			
		||||
    - Accept the license agreement and select your preferred Windows edition, like Home or Pro.
 | 
			
		||||
 | 
			
		||||
    - Choose ```Custom: Install Windows only (advanced)```, and click ```Load driver``` on the next screen. Select 'Browse' and navigate  to the ```D:\NetKVM\w11\amd64``` folder, and click 'OK'. Select the ```VirtIO Ethernet Adapter``` from the list and click 'Next'.
 | 
			
		||||
 | 
			
		||||
    - Select 'Drive 0' and click 'Next'.
 | 
			
		||||
 | 
			
		||||
    - Wait until Windows finishes copying files and completes the installation.
 | 
			
		||||
 | 
			
		||||
    - Once you see your desktop, open File Explorer and navigate to the CD-ROM drive (D:). Double-click on ```virtio-win-gt-x64``` and proceed to install the VirtIO drivers.
 | 
			
		||||
 | 
			
		||||
    - Now your Windows installation is ready for use. Enjoy it, and don't forget to star this repo!
 | 
			
		||||
    - Once you see your desktop, your Windows installation is ready for use. Enjoy it, and don't forget to star this repo!
 | 
			
		||||
 | 
			
		||||
  * ### How do I specify the Windows version?
 | 
			
		||||
 | 
			
		||||
    You can modify the `VERSION` environment variable to specify the version of Windows you want to download:
 | 
			
		||||
    You can modify the `VERSION` environment variable in order to specify the version of Windows you want to download:
 | 
			
		||||
 | 
			
		||||
    ```yaml
 | 
			
		||||
    environment:
 | 
			
		||||
@ -88,11 +80,9 @@ docker run -it --rm -e "VERSION=win11x64" -p 8006:8006 --device=/dev/kvm --cap-a
 | 
			
		||||
    - ```win2019-eval``` (Windows Server 2019)
 | 
			
		||||
    - ```win2016-eval``` (Windows Server 2016)
 | 
			
		||||
 | 
			
		||||
  * ### How can I view the screen?
 | 
			
		||||
  * ### How do I use a custom ISO file?
 | 
			
		||||
 | 
			
		||||
    The container includes a web-based viewer, so you can visit [http://localhost:8006/](http://localhost:8006/) using any web browser to view the screen and interact with Windows via the keyboard or mouse.
 | 
			
		||||
 | 
			
		||||
    This is mainly for use during installation, as afterwards you can use Remote Desktop, TeamViewer or any other software you prefer.
 | 
			
		||||
    You can supply your own ISO file by naming it ```custom.iso``` and placing it in the ```/storage``` folder. Then follow the same steps as for [manual installation](https://github.com/dockur/windows/tree/dev?tab=readme-ov-file#how-do-i-perform-a-manual-installation).
 | 
			
		||||
 | 
			
		||||
  * ### How do I increase the amount of CPU or RAM?
 | 
			
		||||
 | 
			
		||||
@ -139,6 +129,41 @@ docker run -it --rm -e "VERSION=win11x64" -p 8006:8006 --device=/dev/kvm --cap-a
 | 
			
		||||
 | 
			
		||||
    If you receive an error from `kvm-ok` indicating that KVM acceleration can't be used, check the virtualization settings in the BIOS.
 | 
			
		||||
 | 
			
		||||
  * ### How do I view the screen?
 | 
			
		||||
 | 
			
		||||
    The container includes a web-based viewer, so you can visit [http://localhost:8006/](http://localhost:8006/) using any web browser to view the screen and interact with Windows via the keyboard or mouse.
 | 
			
		||||
 | 
			
		||||
    This is mainly for use during installation, as afterwards you can use Remote Desktop, TeamViewer or any other software you prefer.
 | 
			
		||||
 | 
			
		||||
  * ### How do I perform a manual installation?
 | 
			
		||||
 | 
			
		||||
    If you prefer to perform the installation manually in order to customize some options, add the following environment variable:
 | 
			
		||||
 | 
			
		||||
    ```yaml
 | 
			
		||||
    environment:
 | 
			
		||||
      ATTENDED: "Y"
 | 
			
		||||
    ```
 | 
			
		||||
 | 
			
		||||
    Then follow these steps:
 | 
			
		||||
 | 
			
		||||
    - Start the container and wait until the ISO download is completed. If needed, you can view this progress in the Docker log. Wait until you see the message ```BdsDxe: starting Boot```.
 | 
			
		||||
 | 
			
		||||
    - Connect to port 8006 of the container in your web browser, you will see the Windows installation screen.
 | 
			
		||||
 | 
			
		||||
    - Start the installation by clicking ```Install now```. On the next screen, press 'OK' when prompted to ```Load driver``` and select the ```VirtIO SCSI``` driver from the list that matches your Windows version. So for Windows 11, select ```D:\amd64\w11\vioscsi.inf``` and click 'Next'.
 | 
			
		||||
 | 
			
		||||
    - Accept the license agreement and select your preferred Windows edition, like Home or Pro.
 | 
			
		||||
 | 
			
		||||
    - Choose ```Custom: Install Windows only (advanced)```, and click ```Load driver``` on the next screen. Select 'Browse' and navigate  to the ```D:\NetKVM\w11\amd64``` folder, and click 'OK'. Select the ```VirtIO Ethernet Adapter``` from the list and click 'Next'.
 | 
			
		||||
 | 
			
		||||
    - Select 'Drive 0' and click 'Next'.
 | 
			
		||||
 | 
			
		||||
    - Wait until Windows finishes copying files and completes the installation.
 | 
			
		||||
 | 
			
		||||
    - Once you see your desktop, open File Explorer and navigate to the CD-ROM drive (D:). Double-click on ```virtio-win-gt-x64``` and proceed to install the VirtIO drivers.
 | 
			
		||||
 | 
			
		||||
    - Now your Windows installation is ready for use. Enjoy it, and don't forget to star this repo!
 | 
			
		||||
 | 
			
		||||
  * ### Is this project legal?
 | 
			
		||||
 | 
			
		||||
    Yes, this project contains only open-source code and does not distribute any copyrighted material. Neither does it try to circumvent any copyright protection measures. So under all applicable laws, this project would be considered legal. 
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,7 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
set -Eeuo pipefail
 | 
			
		||||
 | 
			
		||||
: "${ATTENDED:="N"}"
 | 
			
		||||
: "${VERSION:="win11x64"}"
 | 
			
		||||
 | 
			
		||||
ARGUMENTS="-chardev socket,id=chrtpm,path=/tmp/emulated_tpm/swtpm-sock $ARGUMENTS"
 | 
			
		||||
@ -32,11 +33,23 @@ if [ ! -f "$TMP/$BASE" ]; then
 | 
			
		||||
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
info "Customizing ISO to remove keypress requirement during boot..."
 | 
			
		||||
info "Preparing ISO image for installation..."
 | 
			
		||||
 | 
			
		||||
DIR="$TMP/unpack"
 | 
			
		||||
7z x "$TMP/$BASE" -o"$DIR"
 | 
			
		||||
genisoimage -b boot/etfsboot.com -no-emul-boot -c BOOT.CAT -iso-level 4 -J -l -D -N -joliet-long -relaxed-filenames -v -V "$VERSION" -udf -boot-info-table -eltorito-alt-boot -eltorito-boot efi/microsoft/boot/efisys_noprompt.bin -no-emul-boot -o "$TMP/$BASE.tmp" -allow-limited-size "$DIR"
 | 
			
		||||
 | 
			
		||||
if [[ "$ATTENDED" != [Yy1]* ]]; then
 | 
			
		||||
  if [ -f "/run/assets/$VERSION.xml" ]; then
 | 
			
		||||
 | 
			
		||||
    wimlib-imagex update "$DIR/sources/boot.wim" 2 \
 | 
			
		||||
      --command "add /run/assets/$VERSION.xml /autounattend.xml"
 | 
			
		||||
 | 
			
		||||
  fi
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
genisoimage -b boot/etfsboot.com -no-emul-boot -c BOOT.CAT -iso-level 4 -J -l -D -N -joliet-long -relaxed-filenames \
 | 
			
		||||
            -v -V "$VERSION" -udf -boot-info-table -eltorito-alt-boot -eltorito-boot efi/microsoft/boot/efisys_noprompt.bin \
 | 
			
		||||
            -no-emul-boot -o "$TMP/$BASE.tmp" -allow-limited-size "$DIR"
 | 
			
		||||
 | 
			
		||||
mv "$TMP/$BASE.tmp" "$STORAGE/$BASE"
 | 
			
		||||
rm -rf "$TMP"
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user