Forum Discussion
Valentinasop
Oct 30, 2025Silver Contributor
Why oobe\bypassnro Not Working for Windows 11 25H2
Hi all, I managed to install windows 11 with a local account by applying the oobe\bypassnro trick. It worked like a charm in the past with Windows 11 22H2, 23H2 and 24H2 installation as far as I hav...
- Oct 31, 2025
This bug was patched by Microsoft and oobe\bypassnro is no longer working. You can fix this by following this post.
https://www.weboftips.com/fix-oobebypassnro-not-working-for-windows-11
It shows you how to install windows 11 using a local account.
Mousefluff
Mar 31, 2026Iron Contributor
NOTE: The script below was written for both Windows 10 22H2 and Windows 11 25H2, using the official documentation provided by Microsoft.
Use Notepad to create this file on your desktop or another folder: WinPE_BypassNRO.bat
Echo OFF
SETLOCAL
REG ADD HKLM\SOFTWARE\Microsoft\PCHC /V UpgradeEligibility /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SYSTEM\Setup\MoSetup /V AllowUpgradesWithUnsupportedTPMOrCPU /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SYSTEM\Setup\LabConfig /V BypassCPUCheck /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SYSTEM\Setup\LabConfig /V BypassDiskCheck /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SYSTEM\Setup\LabConfig /V BypassRAMCheck /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SYSTEM\Setup\LabConfig /V BypassSecureBootCheck /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SYSTEM\Setup\LabConfig /V BypassStorageCheck /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SYSTEM\Setup\LabConfig /V BypassTPMCheck /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /V BypassNRO /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /V HideOnlineAccountScreens /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /V DisableVoice /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /V PrivacyConsentStatus /T REG_DWORD /D 00000001 /F
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /V ProtectYourPC /T REG_DWORD /D 00000003 /F
netsh wlan set autoconfig enabled=no interface="Wi-Fi"
netsh wlan set allowexplicitcreds allow=no
netsh wlan set hostednetwork mode=disallow
netsh wlan disconnect interface="Wi-Fi"
ENDLOCAL