Forum Discussion
ArusikO
Oct 20, 2025Iron Contributor
Can I bypass windows 11 requirements for clean install?
I bought an used laptop from amazon and need to clean install Windows 11 on it. I made a bootable USB with the official media creation tool but I received this error when booting from the USB. This...
PatrickHarris
Oct 20, 2025Bronze Contributor
A simple powershell script to bypass windows 11 system checks f
# create LabConfig if missing
if (-not (Test-Path "HKLM:\SYSTEM\Setup\LabConfig")) {
New-Item -Path "HKLM:\SYSTEM\Setup" -Name "LabConfig" -Force | Out-Null
}
New-ItemProperty -Path "HKLM:\SYSTEM\Setup\LabConfig" -Name "BypassTPMCheck" -Value 1 -PropertyType DWord -Force | Out-Null
New-ItemProperty -Path "HKLM:\SYSTEM\Setup\LabConfig" -Name "BypassSecureBootCheck" -Value 1 -PropertyType DWord -Force | Out-Null
New-ItemProperty -Path "HKLM:\SYSTEM\Setup\LabConfig" -Name "BypassRAMCheck" -Value 1 -PropertyType DWord -Force | Out-Null
New-ItemProperty -Path "HKLM:\SYSTEM\Setup\LabConfig" -Name "BypassCPUCheck" -Value 1 -PropertyType DWord -Force | Out-Null
if (-not (Test-Path "HKLM:\SYSTEM\Setup\MoSetup")) {
New-Item -Path "HKLM:\SYSTEM\Setup" -Name "MoSetup" -Force | Out-Null
}
New-ItemProperty -Path "HKLM:\SYSTEM\Setup\MoSetup" -Name "AllowUpgradesWithUnsupportedTPMOrCPU" -Value 1 -PropertyType DWord -Force | Out-Null
exit