@echo off
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassRNO /t REG_DWORD /d 1 /f
shutdown /r /t 0
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
(...)
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" language="neutral" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" publicKeyToken="31bf3856ad364e35" versionScope="nonSxS">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Order>1</Order>
<Path>reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f</Path>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
</unattend>
W11 RTM shipped with System32\OOBE\BypassRNO.cmd as a "quiet" workaround. Most tech bloggers are sloppy and omit the .cmd suffix, referring to the hack as "OOBE\BypassRNO", since that's what you type.
BypassRNO.cmd:
Code:@echo off reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassRNO /t REG_DWORD /d 1 /f shutdown /r /t 0
This is a workaround for users who don't know how to:
- integrate this key into your image's HKLM hive (NTLite)- run the reg command from autounattend.xml (many published examples), or Windows\Panther\unattend.xml (Rufus)
Obviously the reg command must be executed before arriving to OOBE (usually in the "specialize" pass).
BypassRNO.cmd does a reboot, because by the time you regain Shift-F10 access, which is blocked during some parts of OOBE, you're past the checkpoint. Restarting Windows will resume OOBE from before the last reboot, because Windows tracks the last unfinished install stage and continues from there.
Is your firewall blocking inbound or outbound connections? Or you didn't bother checking?I made a compilation of some things that appeared on my firewall. Which of these items can I safely block access to?
I installed Fort Firewall. I received these notifications. I want to block unnecessary connections.Is your firewall blocking inbound or outbound connections? Or you didn't bother checking?