From ebcd7d611fe02ed3f320671b9704807868a9fa7b Mon Sep 17 00:00:00 2001 From: Devnol Date: Tue, 12 Oct 2021 21:12:57 +0300 Subject: [PATCH] Added bypass for cpu model and storage space check Signed-off-by: Devnol --- src/format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/format.c b/src/format.c index 86d7d785..25bcb050 100644 --- a/src/format.c +++ b/src/format.c @@ -1442,7 +1442,7 @@ BOOL RemoveWindows11Restrictions(char drive_letter) int i; const int wim_index = 2; const char* offline_hive_name = "RUFUS_OFFLINE_HIVE"; - const char* key_name[] = { "BypassTPMCheck", "BypassSecureBootCheck", "BypassRAMCheck" }; + const char* key_name[] = { "BypassTPMCheck", "BypassSecureBootCheck", "BypassRAMCheck", "BypassCPUCheck", "BypassStorageCheck" }; char boot_wim_path[] = "#:\\sources\\boot.wim", key_path[64]; char* mount_path = NULL; char path[MAX_PATH];