Manual BYPASSNRO

  1. regedit
  2. Go to Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE.
  3. New > DWORD (32-bit) >BypassNRO.
  4. Set its value data to 1.
  5. Restart your system

Steps to Bypass Microsoft Account Setup
https://github.com/the-P1neapple/WinJS-Microsoft-Account-Bypass

1. Start Windows 11 Setup

  • Begin the Windows 11 Setup Process.
  • Select your region and keyboard layout.

2. Stop at the Secondary Keyboard Layout Screen

  • When you reach the Secondary Keyboard Layout screen, do not click Skip.
  • If you accidentally skipped and reached the Network Setup Screen, don’t stress. I have a guide in the troubleshooting section.

3. Open the Developer Console

  • Press Ctrl + Shift + J to open the Developer Console.
  • Your screen will go dark and will appear with a prompt (indicated by a > symbol) at the top left of the screen.

4. Enter the Restart Command

  • Type the following command exactly as shown:WinJS.Application.restart(“ms-cxh://LOCALONLY”)

Note: This command is case-sensitive. You can use Tab-completion to help:

  • After typing WinJS.A, press Tab to auto-complete Application.
  • After typing res, press Tab to auto-complete restart.

5. Exit the Developer Console

  • After entering the command, press Enter to execute it.
  • Press Escape to exit the Developer Console and return to the OOBE interface.

Note: If the Escape key doesn’t close the Console, click anywhere on the screen to ensure the console is focused and then press the key again.

6. Local Account Setup

  • The Secondary Keyboard Layout screen will refresh, and a Windows 10-style local account setup screen will appear.
  • Enter your desired usernamepassword, and security questions and click Next.

7. Complete the Setup

  • The Setup will go black and will then log you in to your newly created account. Allow Windows 11 a few moments to configure the user.
  • Continue with the remaining privacy setting prompts.
  • Once finished, you will have successfully created a local account in Windows 11.

And another

Shift + F10
regedit
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\OOBE\
HideOnlineAccountScreens 1

Win11 Insecure Guest Logins

Computer Configuration>Administrative Templates>Network>Lanman Workstation

Enabled: Enable insecure guest logons
Disable: Require encryption

Then

Disable SMB Signing:

Set-SmbClientConfiguration -RequireSecuritySignature $false
Set-SmbServerConfiguration -RequireSecuritySignature $false

Reboot

Also good to check with

Get-SmbClientConfiguration

Takeown

takeown /R /A /F foldername /D N

icacls foldername /grant Administrators:F /T /C

Disable Modern Standby

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power]
“PlatformAoAcOverride”=dword:00000000

Reboot

Windows 11 Restore Old Context Menus

https://4sysops.com/archives/restore-classic-context-menu-in-windows-11-explorer-using-group-policy-or-powershell/

reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /t REG_SZ

Get-Process explorer | Stop-Process -ErrorAction Ignore

Back to Top