From 3686e0a9a95a12f4f578e5cb722c7b1922648446 Mon Sep 17 00:00:00 2001 From: Ronak419 Date: Wed, 12 Mar 2025 14:19:18 +0530 Subject: [PATCH] Update install.sh --- src/install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/install.sh b/src/install.sh index 2a322be..4dfb6b5 100644 --- a/src/install.sh +++ b/src/install.sh @@ -140,16 +140,16 @@ finishInstall() { echo "$MACHINE" > "$STORAGE/windows.old" fi else - # Enable secure boot + TPM on manual installs as Win11 requires + # Disable secure boot + TPM on manual installs as Win11 requires if [[ "$MANUAL" == [Yy1]* ]] || [[ "$aborted" == [Yy1]* ]]; then if [[ "${DETECTED,,}" == "win11"* ]]; then - BOOT_MODE="windows_secure" + BOOT_MODE="windows_legacy" echo "$BOOT_MODE" > "$STORAGE/windows.mode" fi fi - # Enable secure boot on multi-socket systems to workaround freeze + # Disable secure boot on multi-socket systems to workaround freeze if [ -n "$SOCKETS" ] && [[ "$SOCKETS" != "1" ]]; then - BOOT_MODE="windows_secure" + BOOT_MODE="windows_legacy" echo "$BOOT_MODE" > "$STORAGE/windows.mode" fi fi