Skip to content

Instantly share code, notes, and snippets.

@M507
Created October 23, 2025 17:31
Show Gist options
  • Save M507/3590e379081ab6557d4f00e752ac656b to your computer and use it in GitHub Desktop.
Save M507/3590e379081ab6557d4f00e752ac656b to your computer and use it in GitHub Desktop.
no TPM checks Win11
@echo off
reg add HKLM\System\Setup\LabConfig /v BypassTPMCheck /t reg_dword /d 0x00000001 /f
reg add HKLM\System\Setup\LabConfig /v BypassSecureBootCheck /t reg_dword /d 0x00000001 /f
reg add HKLM\System\Setup\LabConfig /v BypassRAMCheck /t reg_dword /d 0x00000001 /f
reg add HKLM\System\Setup\LabConfig /v BypassStorageCheck /t reg_dword /d 0x00000001 /f
reg add HKLM\System\Setup\LabConfig /v BypassCPUCheck /t reg_dword /d 0x00000001 /f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment