this post was submitted on 29 Mar 2025
911 points (98.8% liked)

Technology

68244 readers
4102 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ChaoticNeutralCzech@feddit.org 92 points 5 days ago* (last edited 5 days ago) (3 children)

The command (C:\Windows\System32\) OOBE\bypassnro (.cmd) one types into the command prompt (after opening it with Shift+F10) for the bypass is the location of a batch file they will be removing (the parenthesized parts are optional, implied by the command interpreter, and so is any capitalization). You can still do whatever it's doing (adding a registry key and restarting) by typing the command manually or providing a copy of the file on a USB drive. After a restart, the OS will check for the registry key AND lack of internet connection to provide the local account option.

For the record, the contents of the file are

@echo off
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f
shutdown /r /t 0

The first line is optional, and so is the third if you're OK with restarting manually. If creating the file on Unix-based systems, make sure the newline sequence is CRLF (DOS/Windows standard).

Obligatory shoutout to literally any Linux distro, which does not need this workaround, and is usually easier to install and set up than debloating a fresh Windows 11 install.

[–] SupraMario@lemmy.world 45 points 5 days ago (1 children)

Rufus has an option to auto add this for you when building a bootable drive. Works great.

[–] fmstrat@lemmy.nowsci.com 1 points 5 days ago* (last edited 4 days ago) (1 children)

Still using Rufus? Ventoy is the way of the future. One USB, hundreds of ISOs.

Edit: Seems I was unaware of some potential risks with the binary blobs pre-built in Ventoy. No threat has been found, but there are supply-chain concerns. It appears there is a fork where someone is cleaning up the build process.

[–] untuned@lemmy.ca 6 points 5 days ago (1 children)

I might be OOTL but wasn't there some concerns with the developer or something? I thought I heard something but I forgot what

[–] Buddahriffic@lemmy.world 9 points 5 days ago (1 children)

Until they remove checking that reg key from all versions other than maybe enterprise. If they decide that running windows requires an MS online account, they can keep bumping up the difficulty of running it without whenever they want.

They are keeping around so many deprecated features for internal use and whatnot, I would be surprised if they did remove this registry check.

Until Windows 12 is released, you can always use an old ISO and then update to the newest version.

[–] milicent_bystandr@lemm.ee 1 points 5 days ago

Thank you! I've bookmarked this for next time I have a Windows reinstall! Hoping it still works then...