diff --git a/assets/win10x64-enterprise.cmd b/assets/win10x64-enterprise.cmd
deleted file mode 100644
index a408ddcf..00000000
--- a/assets/win10x64-enterprise.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win10x64-enterprise.xml b/assets/win10x64-enterprise.xml
deleted file mode 100644
index afd6d4d8..00000000
--- a/assets/win10x64-enterprise.xml
+++ /dev/null
@@ -1,337 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- NPPR9-FWDCX-D2C8J-H872K-2YT43
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win10x64-iot.cmd b/assets/win10x64-iot.cmd
deleted file mode 100644
index a408ddcf..00000000
--- a/assets/win10x64-iot.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win10x64-iot.xml b/assets/win10x64-iot.xml
deleted file mode 100644
index 0dfcb479..00000000
--- a/assets/win10x64-iot.xml
+++ /dev/null
@@ -1,343 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /image/index
- 2
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
-
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win10x64-ltsc.cmd b/assets/win10x64-ltsc.cmd
deleted file mode 100644
index a408ddcf..00000000
--- a/assets/win10x64-ltsc.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win10x64-ltsc.xml b/assets/win10x64-ltsc.xml
deleted file mode 100644
index 0df13089..00000000
--- a/assets/win10x64-ltsc.xml
+++ /dev/null
@@ -1,340 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /image/index
- 1
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win10x64.cmd b/assets/win10x64.cmd
deleted file mode 100644
index 247e727d..00000000
--- a/assets/win10x64.cmd
+++ /dev/null
@@ -1,122 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win10x64.xml b/assets/win10x64.xml
deleted file mode 100644
index 1a8a8b1c..00000000
--- a/assets/win10x64.xml
+++ /dev/null
@@ -1,337 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- VK7JG-NPHTM-C97JM-9MPGT-3V66T
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win11x64-enterprise.cmd b/assets/win11x64-enterprise.cmd
deleted file mode 100644
index be2508ac..00000000
--- a/assets/win11x64-enterprise.cmd
+++ /dev/null
@@ -1,134 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="pe" goto pe
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:pe
-
-exit /b 0
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Disable the SMB signing requirement.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "RequireSecuritySignature" /t REG_DWORD /d 0 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Remove the empty Windows.old folder.
-if exist "%SystemDrive%\Windows.old" rd /q "%SystemDrive%\Windows.old"
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV1 /d 0 /t REG_DWORD /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV2 /d 0 /t REG_DWORD /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win11x64-enterprise.xml b/assets/win11x64-enterprise.xml
deleted file mode 100644
index 5859b612..00000000
--- a/assets/win11x64-enterprise.xml
+++ /dev/null
@@ -1,360 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- NPPR9-FWDCX-D2C8J-H872K-2YT43
-
-
- false
-
- false
-
-
-
- 1
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassTPMCheck /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassSecureBootCheck /t REG_DWORD /d 1 /f
-
-
- 3
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassRAMCheck /t REG_DWORD /d 1 /f
-
-
- 4
- reg.exe add "HKLM\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 /f
-
-
- 5
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" pe
- Run the PE pass of the setup script
-
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win11x64-iot.cmd b/assets/win11x64-iot.cmd
deleted file mode 100644
index be2508ac..00000000
--- a/assets/win11x64-iot.cmd
+++ /dev/null
@@ -1,134 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="pe" goto pe
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:pe
-
-exit /b 0
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Disable the SMB signing requirement.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "RequireSecuritySignature" /t REG_DWORD /d 0 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Remove the empty Windows.old folder.
-if exist "%SystemDrive%\Windows.old" rd /q "%SystemDrive%\Windows.old"
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV1 /d 0 /t REG_DWORD /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV2 /d 0 /t REG_DWORD /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win11x64-iot.xml b/assets/win11x64-iot.xml
deleted file mode 100644
index 3137f840..00000000
--- a/assets/win11x64-iot.xml
+++ /dev/null
@@ -1,360 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- CGK42-GYN6Y-VD22B-BX98W-J8JXD
-
-
- false
-
- false
-
-
-
- 1
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassTPMCheck /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassSecureBootCheck /t REG_DWORD /d 1 /f
-
-
- 3
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassRAMCheck /t REG_DWORD /d 1 /f
-
-
- 4
- reg.exe add "HKLM\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 /f
-
-
- 5
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" pe
- Run the PE pass of the setup script
-
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win11x64-ltsc.cmd b/assets/win11x64-ltsc.cmd
deleted file mode 100644
index be2508ac..00000000
--- a/assets/win11x64-ltsc.cmd
+++ /dev/null
@@ -1,134 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="pe" goto pe
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:pe
-
-exit /b 0
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Disable the SMB signing requirement.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "RequireSecuritySignature" /t REG_DWORD /d 0 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Remove the empty Windows.old folder.
-if exist "%SystemDrive%\Windows.old" rd /q "%SystemDrive%\Windows.old"
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV1 /d 0 /t REG_DWORD /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV2 /d 0 /t REG_DWORD /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win11x64-ltsc.xml b/assets/win11x64-ltsc.xml
deleted file mode 100644
index f227ffd8..00000000
--- a/assets/win11x64-ltsc.xml
+++ /dev/null
@@ -1,360 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- M7XTQ-FN8P6-TTKYV-9D4CC-J462D
-
-
- false
-
- false
-
-
-
- 1
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassTPMCheck /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassSecureBootCheck /t REG_DWORD /d 1 /f
-
-
- 3
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassRAMCheck /t REG_DWORD /d 1 /f
-
-
- 4
- reg.exe add "HKLM\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 /f
-
-
- 5
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" pe
- Run the PE pass of the setup script
-
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win11x64.cmd b/assets/win11x64.cmd
deleted file mode 100644
index be2508ac..00000000
--- a/assets/win11x64.cmd
+++ /dev/null
@@ -1,134 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="pe" goto pe
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:pe
-
-exit /b 0
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Disable the SMB signing requirement.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "RequireSecuritySignature" /t REG_DWORD /d 0 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Remove the empty Windows.old folder.
-if exist "%SystemDrive%\Windows.old" rd /q "%SystemDrive%\Windows.old"
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Hide Copilot button.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV1 /d 0 /t REG_DWORD /f
-
-rem Disable unsupported hardware notifications.
-reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV2 /d 0 /t REG_DWORD /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win11x64.xml b/assets/win11x64.xml
deleted file mode 100644
index 50384369..00000000
--- a/assets/win11x64.xml
+++ /dev/null
@@ -1,360 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- VK7JG-NPHTM-C97JM-9MPGT-3V66T
-
-
- false
-
- false
-
-
-
- 1
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassTPMCheck /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassSecureBootCheck /t REG_DWORD /d 1 /f
-
-
- 3
- reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassRAMCheck /t REG_DWORD /d 1 /f
-
-
- 4
- reg.exe add "HKLM\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 /f
-
-
- 5
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" pe
- Run the PE pass of the setup script
-
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f
-
-
- 2
- reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"
-
-
- 3
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f
-
-
- 4
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f
-
-
- 5
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 6
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 7
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f
-
-
- 8
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f
-
-
- 9
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
-
-
- 10
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f
-
-
- 11
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f
-
-
- 12
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f
-
-
- 13
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f
-
-
- 14
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f
-
-
- 15
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f
-
-
- 16
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f
-
-
- 17
- reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f
-
-
- 18
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 19
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 20
- reg.exe add "HKU\mount\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 21
- reg.exe unload "HKU\mount"
-
-
- 22
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f
-
-
- 23
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 1 /f
-
-
- 24
- reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d 1 /f
-
-
- 25
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 26
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win2008r2.cmd b/assets/win2008r2.cmd
deleted file mode 100644
index 1d682578..00000000
--- a/assets/win2008r2.cmd
+++ /dev/null
@@ -1,117 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Disable Shutdown Event Tracker.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win2008r2.xml b/assets/win2008r2.xml
deleted file mode 100644
index c158449b..00000000
--- a/assets/win2008r2.xml
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- 100
-
-
- 2
- Primary
- true
-
-
-
-
- NTFS
-
- 1
- true
- 1
- 0x27
-
-
- true
- NTFS
-
- C
- 2
- 2
-
-
-
-
-
-
-
-
- 1
- /IMAGE/INDEX
-
-
-
- 1
- 2
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- YC6KT-GKW9T-YTKYR-T4X34-R7VHC
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- true
-
-
- true
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win2012r2.cmd b/assets/win2012r2.cmd
deleted file mode 100644
index d6f53c0b..00000000
--- a/assets/win2012r2.cmd
+++ /dev/null
@@ -1,111 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Disable Shutdown Event Tracker.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win2012r2.xml b/assets/win2012r2.xml
deleted file mode 100644
index d277ab41..00000000
--- a/assets/win2012r2.xml
+++ /dev/null
@@ -1,250 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /image/index
- 2
-
-
-
- 1
- 3
-
- OnError
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- D2N9P-3P6X9-2R39C-7RTCD-MDVJX
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- true
-
-
- true
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win2016.cmd b/assets/win2016.cmd
deleted file mode 100644
index 8692fc28..00000000
--- a/assets/win2016.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Disable Shutdown Event Tracker.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win2016.xml b/assets/win2016.xml
deleted file mode 100644
index 9f1c64c6..00000000
--- a/assets/win2016.xml
+++ /dev/null
@@ -1,250 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /IMAGE/NAME
- Windows Server 2016 SERVERSTANDARD
-
-
-
- 1
- 3
-
- OnError
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- true
-
-
- true
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win2019-hv.cmd b/assets/win2019-hv.cmd
deleted file mode 100644
index 8692fc28..00000000
--- a/assets/win2019-hv.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Disable Shutdown Event Tracker.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win2019-hv.xml b/assets/win2019-hv.xml
deleted file mode 100644
index 467479dc..00000000
--- a/assets/win2019-hv.xml
+++ /dev/null
@@ -1,256 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /IMAGE/NAME
- Hyper-V Server 2019 SERVERHYPERCORE
-
-
-
- 1
- 3
-
- OnError
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- dism.exe /online /Disable-Feature /FeatureName:Microsoft-Hyper-V /NoRestart
- Disable Hyper-V role
-
-
- 3
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- true
-
-
- true
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win2019.cmd b/assets/win2019.cmd
deleted file mode 100644
index 8692fc28..00000000
--- a/assets/win2019.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Disable Shutdown Event Tracker.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win2019.xml b/assets/win2019.xml
deleted file mode 100644
index 683906a0..00000000
--- a/assets/win2019.xml
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /IMAGE/NAME
- Windows Server 2019 SERVERSTANDARD
-
-
-
- 1
- 3
-
- OnError
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- N69G4-B89J2-4G8F4-WWYCC-J464C
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- true
-
-
- true
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win2022.cmd b/assets/win2022.cmd
deleted file mode 100644
index 8692fc28..00000000
--- a/assets/win2022.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Disable Shutdown Event Tracker.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Remove Search from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
-
-rem Remove Task View from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-
-rem Remove Widgets from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-
-rem Remove Chat from the Taskbar.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win2022.xml b/assets/win2022.xml
deleted file mode 100644
index 879218a1..00000000
--- a/assets/win2022.xml
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /IMAGE/NAME
- Windows Server 2022 SERVERSTANDARD
-
-
-
- 1
- 3
-
- OnError
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- VDYBN-27WPP-V4HQT-9VMD4-VMK7H
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- true
-
-
- true
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win2025.cmd b/assets/win2025.cmd
deleted file mode 100644
index 8ec76847..00000000
--- a/assets/win2025.cmd
+++ /dev/null
@@ -1,110 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Disable Shutdown Event Tracker.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Disable the SMB signing requirement.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "RequireSecuritySignature" /t REG_DWORD /d 0 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-powershell.exe -ExecutionPolicy Unrestricted -NoLogo -NoProfile -NonInteractive set-localuser -name "Docker" -passwordneverexpires 1
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation and monitor blanking.
-POWERCFG -H OFF
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable the first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Allow RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery and File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Remove the empty Windows.old folder.
-if exist "%SystemDrive%\Windows.old" rd /q "%SystemDrive%\Windows.old"
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Set initial Explorer and taskbar preferences for the logged-in user.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d 0 /f
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win2025.xml b/assets/win2025.xml
deleted file mode 100644
index 0f3325d0..00000000
--- a/assets/win2025.xml
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- /IMAGE/NAME
- Windows Server 2025 SERVERSTANDARD
-
-
-
- 1
- 3
-
- OnError
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- TVRH6-WHNXV-R9WG3-9XRFY-MY832
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
- 24/7
-
- Dockur
- https://github.com/dockur/windows/issues
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- true
-
-
- true
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win7x64-enterprise.cmd b/assets/win7x64-enterprise.cmd
deleted file mode 100644
index a45c14b8..00000000
--- a/assets/win7x64-enterprise.cmd
+++ /dev/null
@@ -1,105 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win7x64-enterprise.xml b/assets/win7x64-enterprise.xml
deleted file mode 100644
index 1e712960..00000000
--- a/assets/win7x64-enterprise.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- 100
-
-
- 2
- Primary
- true
-
-
-
-
- NTFS
-
- 1
- true
- 1
- 0x27
-
-
- true
- NTFS
-
- C
- 2
- 2
-
-
-
-
-
-
-
-
- Windows 7 Enterprise
- /IMAGE/NAME
-
-
-
- 1
- 2
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- H7X92-3VPBB-Q799D-Y6JJ3-86WC6
- OnError
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win7x64-ultimate.cmd b/assets/win7x64-ultimate.cmd
deleted file mode 100644
index a45c14b8..00000000
--- a/assets/win7x64-ultimate.cmd
+++ /dev/null
@@ -1,105 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win7x64-ultimate.xml b/assets/win7x64-ultimate.xml
deleted file mode 100644
index e8c01e3e..00000000
--- a/assets/win7x64-ultimate.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- 100
-
-
- 2
- Primary
- true
-
-
-
-
- NTFS
-
- 1
- true
- 1
- 0x27
-
-
- true
- NTFS
-
- C
- 2
- 2
-
-
-
-
-
-
-
-
- Windows 7 Ultimate
- /IMAGE/NAME
-
-
-
- 1
- 2
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV
- OnError
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win7x64.cmd b/assets/win7x64.cmd
deleted file mode 100644
index a45c14b8..00000000
--- a/assets/win7x64.cmd
+++ /dev/null
@@ -1,105 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win7x64.xml b/assets/win7x64.xml
deleted file mode 100644
index 972b34b9..00000000
--- a/assets/win7x64.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- 100
-
-
- 2
- Primary
- true
-
-
-
-
- NTFS
-
- 1
- true
- 1
- 0x27
-
-
- true
- NTFS
-
- C
- 2
- 2
-
-
-
-
-
-
-
-
- Windows 7 PROFESSIONAL
- /IMAGE/NAME
-
-
-
- 1
- 2
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- HYF8J-CVRMY-CM74G-RPHKF-PW487
- OnError
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win7x86-enterprise.cmd b/assets/win7x86-enterprise.cmd
deleted file mode 100644
index a45c14b8..00000000
--- a/assets/win7x86-enterprise.cmd
+++ /dev/null
@@ -1,105 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win7x86-enterprise.xml b/assets/win7x86-enterprise.xml
deleted file mode 100644
index 60c05a09..00000000
--- a/assets/win7x86-enterprise.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- 100
-
-
- 2
- Primary
- true
-
-
-
-
- NTFS
-
- 1
- true
- 1
- 0x27
-
-
- true
- NTFS
-
- C
- 2
- 2
-
-
-
-
-
-
-
-
- Windows 7 Enterprise
- /IMAGE/NAME
-
-
-
- 1
- 2
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- H7X92-3VPBB-Q799D-Y6JJ3-86WC6
- OnError
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win7x86-ultimate.cmd b/assets/win7x86-ultimate.cmd
deleted file mode 100644
index a45c14b8..00000000
--- a/assets/win7x86-ultimate.cmd
+++ /dev/null
@@ -1,105 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win7x86-ultimate.xml b/assets/win7x86-ultimate.xml
deleted file mode 100644
index 46bf8497..00000000
--- a/assets/win7x86-ultimate.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- 100
-
-
- 2
- Primary
- true
-
-
-
-
- NTFS
-
- 1
- true
- 1
- 0x27
-
-
- true
- NTFS
-
- C
- 2
- 2
-
-
-
-
-
-
-
-
- Windows 7 Ultimate
- /IMAGE/NAME
-
-
-
- 1
- 2
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV
- OnError
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win7x86.cmd b/assets/win7x86.cmd
deleted file mode 100644
index a45c14b8..00000000
--- a/assets/win7x86.cmd
+++ /dev/null
@@ -1,105 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteAPP to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win7x86.xml b/assets/win7x86.xml
deleted file mode 100644
index 488a68ba..00000000
--- a/assets/win7x86.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- 100
-
-
- 2
- Primary
- true
-
-
-
-
- NTFS
-
- 1
- true
- 1
- 0x27
-
-
- true
- NTFS
-
- C
- 2
- 2
-
-
-
-
-
-
-
-
- Windows 7 PROFESSIONAL
- /IMAGE/NAME
-
-
-
- 1
- 2
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- HYF8J-CVRMY-CM74G-RPHKF-PW487
- OnError
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win81x64-enterprise.cmd b/assets/win81x64-enterprise.cmd
deleted file mode 100644
index 67b2c04e..00000000
--- a/assets/win81x64-enterprise.cmd
+++ /dev/null
@@ -1,120 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Trust the VirtIO display driver publisher to avoid an interactive prompt.
-powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "$catalog = Get-ChildItem -Path (Join-Path $env:SystemRoot 'Drivers\viogpudo') -Filter '*.cat' | Select-Object -First 1; if ($null -eq $catalog) { exit 1 }; $certificate = (Get-AuthenticodeSignature -LiteralPath $catalog.FullName).SignerCertificate; if ($null -eq $certificate) { exit 1 }; [IO.File]::WriteAllBytes((Join-Path $env:TEMP 'viogpudo.cer'), $certificate.Export([Security.Cryptography.X509Certificates.X509ContentType]::Cert))"
-
-if not errorlevel 1 (
- certutil.exe -addstore -f TrustedPublisher "%TEMP%\viogpudo.cer"
- if not errorlevel 1 (
- pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
- )
-)
-
-del /q "%TEMP%\viogpudo.cer" >nul 2>&1
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win81x64-enterprise.xml b/assets/win81x64-enterprise.xml
deleted file mode 100644
index 4115a088..00000000
--- a/assets/win81x64-enterprise.xml
+++ /dev/null
@@ -1,235 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- FHQNR-XYXYC-8PMHT-TV4PH-DRQ3H
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/win81x64.cmd b/assets/win81x64.cmd
deleted file mode 100644
index 67b2c04e..00000000
--- a/assets/win81x64.cmd
+++ /dev/null
@@ -1,120 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem Enable the option for passwordless sign-in.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Turn off automatic Windows Update downloads.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-rem Trust the VirtIO display driver publisher to avoid an interactive prompt.
-powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "$catalog = Get-ChildItem -Path (Join-Path $env:SystemRoot 'Drivers\viogpudo') -Filter '*.cat' | Select-Object -First 1; if ($null -eq $catalog) { exit 1 }; $certificate = (Get-AuthenticodeSignature -LiteralPath $catalog.FullName).SignerCertificate; if ($null -eq $certificate) { exit 1 }; [IO.File]::WriteAllBytes((Join-Path $env:TEMP 'viogpudo.cer'), $certificate.Export([Security.Cryptography.X509Certificates.X509ContentType]::Cert))"
-
-if not errorlevel 1 (
- certutil.exe -addstore -f TrustedPublisher "%TEMP%\viogpudo.cer"
- if not errorlevel 1 (
- pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
- )
-)
-
-del /q "%TEMP%\viogpudo.cer" >nul 2>&1
-
-rem Install the VirtIO display driver last to avoid disrupting earlier setup work.
-pnputil.exe -i -a "%SystemRoot%\Drivers\viogpudo\viogpudo.inf"
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/win81x64.xml b/assets/win81x64.xml
deleted file mode 100644
index ca928cbc..00000000
--- a/assets/win81x64.xml
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- true
-
-
-
- 1
- EFI
- 128
-
-
-
- 2
- MSR
- 128
-
-
-
- 3
- Primary
- true
-
-
-
-
-
- 1
- 1
-
- FAT32
-
-
-
- 2
- 2
-
-
-
- 3
- 3
-
- C
- NTFS
-
-
-
-
-
-
-
-
- Windows 8.1 Pro
- /IMAGE/NAME
-
-
-
- 1
- 3
-
- false
-
-
-
- false
- Never
-
-
- false
- Never
-
-
- true
- Docker
- Windows for Docker
-
- GCRJD-8NW9H-F2CDX-CCM8D-9D6T9
- OnError
-
-
- false
-
- false
-
-
-
-
-
- false
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
-
- Dockur
- Windows for Docker
-
- Windows for Docker
-
-
- 1
-
-
- true
- true
- https://google.com
- about:blank
-
-
- true
- true
- https://google.com
- about:blank
-
-
- 0
-
-
- 1
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
-
- 1
- reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 1 /f
- Set Network Location to Home
-
-
- 2
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
- false
-
-
- 0
-
-
-
-
- true
- all
- @FirewallAPI.dll,-28752
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- true
- true
- true
- true
- Home
- 3
- true
- true
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/winvistax64-enterprise.cmd b/assets/winvistax64-enterprise.cmd
deleted file mode 100644
index 3978dab3..00000000
--- a/assets/winvistax64-enterprise.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Add RDP in firewall.
-netsh.exe advfirewall firewall set rule group="@FirewallAPI.dll,-28752" new enable=Yes
-
-rem Enable RDP.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
-
-rem Turn off sidebar.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar" /v "TurnOffSidebar" /t REG_DWORD /d 1 /f
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v "ScreenSaveActive" /t REG_SZ /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v SCRNSAVE.EXE /t REG_SZ /d C:\Windows\System32\scrnsavex.scr /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/winvistax64-enterprise.xml b/assets/winvistax64-enterprise.xml
deleted file mode 100644
index e46001ff..00000000
--- a/assets/winvistax64-enterprise.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- true
-
-
-
-
- true
- NTFS
-
- C
- 1
- 1
-
-
-
-
-
-
-
-
- Windows Vista Enterprise
- /IMAGE/NAME
-
-
-
- 1
- 1
-
- OnError
- false
-
-
-
- true
- Docker
- Windows for Docker
-
- VKK3X-68KWM-X2YGT-QR4M6-4BWMV
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
- VKK3X-68KWM-X2YGT-QR4M6-4BWMV
- Pacific Standard Time
-
- Dockur
- Windows for Docker
-
- Dockur
- Windows for Docker
-
-
- 1
-
-
- false
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- about:blank
-
-
- 0
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- Home
- 3
- true
- false
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/winvistax64-ultimate.cmd b/assets/winvistax64-ultimate.cmd
deleted file mode 100644
index 3978dab3..00000000
--- a/assets/winvistax64-ultimate.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Add RDP in firewall.
-netsh.exe advfirewall firewall set rule group="@FirewallAPI.dll,-28752" new enable=Yes
-
-rem Enable RDP.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
-
-rem Turn off sidebar.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar" /v "TurnOffSidebar" /t REG_DWORD /d 1 /f
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v "ScreenSaveActive" /t REG_SZ /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v SCRNSAVE.EXE /t REG_SZ /d C:\Windows\System32\scrnsavex.scr /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/winvistax64-ultimate.xml b/assets/winvistax64-ultimate.xml
deleted file mode 100644
index c3dc65f2..00000000
--- a/assets/winvistax64-ultimate.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- true
-
-
-
-
- true
- NTFS
-
- C
- 1
- 1
-
-
-
-
-
-
-
-
- Windows Vista Ultimate
- /IMAGE/NAME
-
-
-
- 1
- 1
-
- OnError
- false
-
-
-
- true
- Docker
- Windows for Docker
-
- VMCB9-FDRV6-6CDQM-RV23K-RP8F7
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
- VMCB9-FDRV6-6CDQM-RV23K-RP8F7
- Pacific Standard Time
-
- Dockur
- Windows for Docker
-
- Dockur
- Windows for Docker
-
-
- 1
-
-
- false
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- about:blank
-
-
- 0
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- Home
- 3
- true
- false
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/winvistax64.cmd b/assets/winvistax64.cmd
deleted file mode 100644
index 3978dab3..00000000
--- a/assets/winvistax64.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Add RDP in firewall.
-netsh.exe advfirewall firewall set rule group="@FirewallAPI.dll,-28752" new enable=Yes
-
-rem Enable RDP.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
-
-rem Turn off sidebar.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar" /v "TurnOffSidebar" /t REG_DWORD /d 1 /f
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v "ScreenSaveActive" /t REG_SZ /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v SCRNSAVE.EXE /t REG_SZ /d C:\Windows\System32\scrnsavex.scr /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/winvistax64.xml b/assets/winvistax64.xml
deleted file mode 100644
index 5e9c5b61..00000000
--- a/assets/winvistax64.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- true
-
-
-
-
- true
- NTFS
-
- C
- 1
- 1
-
-
-
-
-
-
-
-
- Windows Vista BUSINESS
- /IMAGE/NAME
-
-
-
- 1
- 1
-
- OnError
- false
-
-
-
- true
- Docker
- Windows for Docker
-
- 4D2XH-PRBMM-8Q22B-K8BM3-MRW4W
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
- 4D2XH-PRBMM-8Q22B-K8BM3-MRW4W
- Pacific Standard Time
-
- Dockur
- Windows for Docker
-
- Dockur
- Windows for Docker
-
-
- 1
-
-
- false
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- about:blank
-
-
- 0
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- Home
- 3
- true
- false
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/winvistax86-enterprise.cmd b/assets/winvistax86-enterprise.cmd
deleted file mode 100644
index 3978dab3..00000000
--- a/assets/winvistax86-enterprise.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Add RDP in firewall.
-netsh.exe advfirewall firewall set rule group="@FirewallAPI.dll,-28752" new enable=Yes
-
-rem Enable RDP.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
-
-rem Turn off sidebar.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar" /v "TurnOffSidebar" /t REG_DWORD /d 1 /f
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v "ScreenSaveActive" /t REG_SZ /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v SCRNSAVE.EXE /t REG_SZ /d C:\Windows\System32\scrnsavex.scr /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/winvistax86-enterprise.xml b/assets/winvistax86-enterprise.xml
deleted file mode 100644
index c77cbc0b..00000000
--- a/assets/winvistax86-enterprise.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- true
-
-
-
-
- true
- NTFS
-
- C
- 1
- 1
-
-
-
-
-
-
-
-
- Windows Vista Enterprise
- /IMAGE/NAME
-
-
-
- 1
- 1
-
- OnError
- false
-
-
-
- true
- Docker
- Windows for Docker
-
- VKK3X-68KWM-X2YGT-QR4M6-4BWMV
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
- VKK3X-68KWM-X2YGT-QR4M6-4BWMV
- Pacific Standard Time
-
- Dockur
- Windows for Docker
-
- Dockur
- Windows for Docker
-
-
- 1
-
-
- false
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- about:blank
-
-
- 0
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- Home
- 3
- true
- false
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/winvistax86-ultimate.cmd b/assets/winvistax86-ultimate.cmd
deleted file mode 100644
index 3978dab3..00000000
--- a/assets/winvistax86-ultimate.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Add RDP in firewall.
-netsh.exe advfirewall firewall set rule group="@FirewallAPI.dll,-28752" new enable=Yes
-
-rem Enable RDP.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
-
-rem Turn off sidebar.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar" /v "TurnOffSidebar" /t REG_DWORD /d 1 /f
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v "ScreenSaveActive" /t REG_SZ /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v SCRNSAVE.EXE /t REG_SZ /d C:\Windows\System32\scrnsavex.scr /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/winvistax86-ultimate.xml b/assets/winvistax86-ultimate.xml
deleted file mode 100644
index 4f2e06cb..00000000
--- a/assets/winvistax86-ultimate.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- true
-
-
-
-
- true
- NTFS
-
- C
- 1
- 1
-
-
-
-
-
-
-
-
- Windows Vista Ultimate
- /IMAGE/NAME
-
-
-
- 1
- 1
-
- OnError
- false
-
-
-
- true
- Docker
- Windows for Docker
-
- VMCB9-FDRV6-6CDQM-RV23K-RP8F7
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
- VMCB9-FDRV6-6CDQM-RV23K-RP8F7
- Pacific Standard Time
-
- Dockur
- Windows for Docker
-
- Dockur
- Windows for Docker
-
-
- 1
-
-
- false
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- about:blank
-
-
- 0
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- Home
- 3
- true
- false
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-
diff --git a/assets/winvistax86.cmd b/assets/winvistax86.cmd
deleted file mode 100644
index 3978dab3..00000000
--- a/assets/winvistax86.cmd
+++ /dev/null
@@ -1,123 +0,0 @@
-@echo off
-setlocal
-
-set "SCRIPT_DIR=%~dp0"
-set "SETUP_STARTED=%SCRIPT_DIR%setup.started"
-set "SETUP_COMPLETE=%SCRIPT_DIR%setup.complete"
-
-if "%~1"=="" goto setup
-if /i "%~1"=="setup" goto setup
-if /i "%~1"=="logon" goto logon
-if /i "%~1"=="specialize" goto specialize
-exit /b 2
-
-:specialize
-
-rem Install the VMWare display driver before Windows Setup's final reboot.
-certutil.exe -addstore -f Root "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-certutil.exe -addstore -f TrustedPublisher "%SystemRoot%\Drivers\vmsvga\vm3d.cer" >nul 2>&1
-start "" /wait /b pnputil.exe -i -a "%SystemRoot%\Drivers\vmsvga\vm3d.inf" >nul 2>&1
-
-exit /b 0
-
-:setup
-if exist "%SETUP_COMPLETE%" exit /b 0
-
-type nul > "%SETUP_STARTED%"
-
-rem Allow guest access to network shares.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f
-
-rem BEGIN LOCAL_ACCOUNT
-rem Prevent the local user password from expiring.
-wmic useraccount where name="Docker" set PasswordExpires=false
-rem END LOCAL_ACCOUNT
-
-rem Disable hibernation.
-POWERCFG -H OFF
-
-rem Disable monitor blanking.
-POWERCFG -X -monitor-timeout-ac 0
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f
-
-rem Disable Network Discovery popup.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f
-
-rem Disable AutoPlay for all drives.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoDriveTypeAutoRun" /t REG_DWORD /d 255 /f
-
-rem Disable first-run experience in Edge.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f
-
-rem Disable hibernation in the registry.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f
-
-rem Disable hibernation.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f
-
-rem Disable sleep.
-POWERCFG -X -standby-timeout-ac 0
-
-rem Add RDP in firewall.
-netsh.exe advfirewall firewall set rule group="@FirewallAPI.dll,-28752" new enable=Yes
-
-rem Enable RDP.
-reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
-
-rem Turn off sidebar.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar" /v "TurnOffSidebar" /t REG_DWORD /d 1 /f
-
-rem Enable RemoteApp to launch unlisted programs.
-reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fAllowUnlistedRemotePrograms" /t REG_DWORD /d 1 /f
-
-rem Disable RemoteApp allowlist.
-reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList" /v "fDisabledAllowList" /t REG_DWORD /d 1 /f
-
-rem Enable Network Discovery.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-32752" new enable=Yes
-
-rem Enable File Sharing.
-netsh advfirewall firewall set rule group="@FirewallAPI.dll,-28502" new enable=Yes
-
-rem Install the VirtIO Balloon service once.
-sc.exe query BalloonService >nul 2>&1
-if errorlevel 1 "%SystemRoot%\Drivers\Balloon\blnsvr.exe" -i
-
-rem BEGIN PRODUCT_KEY
-rem Install the product key without activating Windows immediately.
-cscript.exe //B //Nologo "%SystemRoot%\System32\slmgr.vbs" /ipk "XXX"
-rem END PRODUCT_KEY
-
-type nul > "%SETUP_COMPLETE%"
-exit /b 0
-
-:logon
-rem Run the machine setup here when SetupComplete.cmd was skipped.
-if not exist "%SETUP_COMPLETE%" call "%~f0" setup
-
-rem Show file extensions in Explorer.
-reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v "ScreenSaveActive" /t REG_SZ /d 0 /f
-
-rem Disable screensaver.
-reg.exe add "HKCU\Control Panel\Desktop" /v SCRNSAVE.EXE /t REG_SZ /d C:\Windows\System32\scrnsavex.scr /f
-
-rem BEGIN SHARED_FOLDER
-rem Add the shared folder to the desktop and map it to drive Z:.
-if not exist "%USERPROFILE%\Desktop\Shared" mklink /d "%USERPROFILE%\Desktop\Shared" \\host.lan\Data
-net.exe use Z: \\host.lan\Data /persistent:yes
-rem END SHARED_FOLDER
-
-rem BEGIN OEM_SCRIPT
-rem Launch the custom script asynchronously in a separate visible window.
-if exist "C:\OEM\install.bat" start "Install" cmd.exe /d /c ""C:\OEM\install.bat""
-rem END OEM_SCRIPT
-
-exit /b 0
diff --git a/assets/winvistax86.xml b/assets/winvistax86.xml
deleted file mode 100644
index 1c8d7bca..00000000
--- a/assets/winvistax86.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
- en-US
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
-
- OnError
-
- 1
- true
-
-
- 1
- Primary
- true
-
-
-
-
- true
- NTFS
-
- C
- 1
- 1
-
-
-
-
-
-
-
-
- Windows Vista BUSINESS
- /IMAGE/NAME
-
-
-
- 1
- 1
-
- OnError
- false
-
-
-
- true
- Docker
- Windows for Docker
-
- 4D2XH-PRBMM-8Q22B-K8BM3-MRW4W
-
-
-
-
-
-
- true
-
-
- 1
-
-
-
-
- true
-
-
- *
- 4D2XH-PRBMM-8Q22B-K8BM3-MRW4W
- Pacific Standard Time
-
- Dockur
- Windows for Docker
-
- Dockur
- Windows for Docker
-
-
- 1
-
-
- false
-
-
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" specialize
- Run the specialize pass of the setup script
-
-
-
-
-
-
- 0409:00000409
- en-US
- en-US
- en-US
-
-
- about:blank
-
-
- 0
-
-
-
-
-
- Docker
- Administrators
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
-
- YQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==
- false
-
-
-
- Docker
- true
- 65432
-
- YQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=
- false
-
-
-
- 32
- 1280
- 720
-
-
- true
- Home
- 3
- true
- false
-
- Dockur
- Windows for Docker
-
-
- 1
- cmd.exe /d /c call "%WINDIR%\Setup\Scripts\SetupComplete.cmd" logon
- Configure Windows after logon
-
-
-
-
-