From 8bfe13f5c5b76ca46ccb56f4fa0b7e0bb6f9f1f3 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 7 Dec 2021 10:11:03 +0000 Subject: [PATCH] Bypass some system checks, such as TPM and SecureBoot. Close #233 This should help users of Quickemu on distros where OVMF/EDK2/QEMU don't provide a complete SecureBoot with SMM capability, such as Arch Linux, to successfully install Windows 11. --- quickget | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/quickget b/quickget index 33636c8..8280120 100755 --- a/quickget +++ b/quickget @@ -1341,6 +1341,24 @@ function unattended_windows() { false + + + 1 + reg add HKLM\System\Setup\LabConfig /v BypassCPUCheck /t REG_DWORD /d 0x00000001 /f + + + 2 + reg add HKLM\System\Setup\LabConfig /v BypassRAMCheck /t REG_DWORD /d 0x00000001 /f + + + 3 + reg add HKLM\System\Setup\LabConfig /v BypassSecureBootCheck /t REG_DWORD /d 0x00000001 /f + + + 4 + reg add HKLM\System\Setup\LabConfig /v BypassTPMCheck /t REG_DWORD /d 0x00000001 /f + + false Never