Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / Installing Windows 11 without Network and Internet Connection

October 20, 2025

Installing Windows 11 without Network and Internet Connection

After Windows 11 is installed on your computer, the Out of Box Experience (OOBE) begins, which requires an active Internet connection to proceed. Windows 11 requires network access during initial setup to connect to your Microsoft Account (MSA) and receive the latest security updates. If your computer lacks any network adapters (Wi-Fi or Ethernet), or if the drivers for your network adapter model are missing from the driver store, or if your computer is on an isolated network without Internet access, you won’t be able to complete the Windows 11 installation.

The screenshot below shows the Windows 11 OOBE screen. It is clear that the OS setup cannot continue without a network connection. This issue arises because either the device lacks a network adapter or the current network is not connected to the Internet. You cannot complete the installation of the OS because the button to continue setting up Windows 11 becomes inactive (greyed out).

Let’s connect you to a network.
You’ll need an internet connection to continue setting up your device. Once connected, you’ll get the latest features and security updates.

Unable to complete Windows 11 install, requires an internet Connection

In the latest Windows 11 builds, including version 25H2, Microsoft enforces a mandatory internet connection during initial setup to encourage the use of Microsoft cloud accounts over local accounts. This article explains several methods to help you complete the installation of Windows 11 when no network connection is available.

Contents:
  • Install Windows 11 with a Local User Account
  • Loading Network Drivers During Windows 11 OOBE
  • Adding Network Drivers into a Windows 11 Installation Image

Install Windows 11 with a Local User Account

To bypass the internet connection and MSA account sign-in checks, continue installing Windows 11 with a local account:

  1. On the OOBE screen, press Shift+F10 (or Fn+Shift+F10 on laptops)
  2. A command prompt will open. Run the command in it: start ms-cxh:localonly skip msa account creation on windows 11 oobe with start ms-cxh:localonly
  3. A dialog for creating a local account will appear. Enter the username, password, and hints. You will then be logged in with a local account, and no internet connection will be required.win11 oobe: create local user

You can also disable the requirement to check the network connection during OOBE using the BypassNRO mode (Bypass Network Requirement Oobe).

  1. To open the command prompt, press Shift+F10 on the installation screen;
  2. Run the command: oobe\bypassnro
    This command may not work in recent versions of Windows 11. Instead, use the following commands to achieve the same result:
    reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f
    shutdown /r /t 0

  3. After restarting the computer, the ‘I don’t have Internet‘ button will appear on the OOBE screen. Click it to proceed to the limited setup mode, where you will be prompted to create a local userskip windows 11 let's connect to a network
  4. After logging into Windows, you can install any missing network adapter drivers from a USB stick

Another way to bypass the MSA account creation screen and network availability check in OOBE is to add the HideOnlineAccountScreens and HideWirelessSetupInOOBE’ registry items.

  1. Press Shift + F10 on the OOBE screen and run the commands: reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v HideOnlineAccountScreens /t REG_DWORD /d 1 /f
    reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v HideWirelessSetupInOOBE /t REG_DWORD /d 1 /f
  2. Then restart the computer
    shutdown /r /t 0HideOnlineAccountScreens and HideWirelessSetupInOOBE options

These options can be added to the AutoUnattend.xml answer file to apply them automatically during Windows installation:

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<OOBE>
<ProtectYourPC>3</ProtectYourPC>
<HideEULAPage>true</HideEULAPage>
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
</OOBE>
</component>
</settings>
</unattend>

Simply copy the AutoUnattend.xml file to the root directory of the Windows 11 installation USB flash drive.

apply AutoUnattend.xml - windows 11

Loading Network Drivers During Windows 11 OOBE

If your computer/ laptop has Wi-Fi or LAN network adapters whose drivers are missing from the Windows image, you’ll be unable to complete the Windows 11 installation and sign in to your Microsoft Account. In this case, you can add the required network drivers directly during the Windows out-of-box experience (OOBE) phase.

The first step is to identify the model of the network adapter on a computer. This information can be found in the manufacturer’s specifications, or you can identify the device manually.

On the Setup screen, press Shift+F10 and run the devmgmt.msccommand. Open the properties of the unknown device, go to the Details tab, select the Hardware IDs property, and copy the ID.

Using the VEN and DEV identifiers, you can identify the network adapter model and download the appropriate driver from the vendor’s website.

Find device drivers using a Hardware ID

How to identify an unknown device in Windows and download the driver.

Download the driver and extract it to a USB flash drive. Connect the USB flash drive to your Windows 11 computer.

To open Command Prompt on the Windows 11 setup screen, press Shift+F10

Check the drive letter that has been assigned to your USB flash drive:

wmic logicaldisk get volumename,name

check usb flash drive letter assigned

In this example, the USB drive has been assigned the letter F:.

To recursively install all device drivers from a flash drive (based on INF files) into Windows, run the following command:

pnputil /add-driver F:\*.inf /subdirs

pnputil - install device drivers cmd

Rescan your computer’s hardware:

pnputil /scan-devices

Close the command prompt and restart your computer. Windows 11 should automatically detect your network adapter and install the appropriate driver from the Driver Store. You can then proceed with installing Windows 11 using your Microsoft account.

You can manually remove unused device drivers from the Windows Driver Store.

Adding Network Drivers into a Windows 11 Installation Image

To avoid installing device drivers manually, you can add the network drivers to the Windows ISO/WIM installation image.

Learn more about installing Windows 11 on unsupported hardware (without TPM, Secure Boot, etc.).
1 comment
6
Facebook Twitter Google + Pinterest
Windows 11
previous post
Set up SSH Key-Based Authentication on VMware ESXi
next post
Hide Library and Special Folders from File Explorer on Windows

Related Reading

How to Allow Multiple RDP Sessions on Windows...

March 15, 2024

How to Install Remote Server Administration Tools (RSAT)...

March 17, 2024

Managing Windows Firewall Rules with PowerShell

March 11, 2024

How to Fix ‘An Operating System Wasn’t Found’...

August 24, 2023

Create a Custom Windows Image with Pre-installed Apps

February 28, 2024

Fixing ‘The Network Path Was Not Found’ 0x80070035...

August 31, 2023

Upgrading to Windows 11 on Unsupported Hardware

March 6, 2024

Configuring RemoteApps Hosted on Windows 10/11 (without Windows...

January 25, 2025

1 comment

Rene September 22, 2024 - 11:14 pm

Does not work anymore, all seems well until restart. The bypass option is not there and ut just keeps searching still

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • How to Find a Previous Computer Name in Windows

    October 28, 2025
  • How to Delete a Windows Service via CMD or PowerShell

    October 16, 2025
  • Resource Fair Sharing in Windows Server Remote Desktop Services (RDS)

    October 6, 2025
  • How to Disable (Enable) Credential Guard in Windows 11

    October 6, 2025
  • Wrong Network Profile on Windows Server after Reboot

    September 30, 2025
  • How to Get Windows 10 Extended Security Updates After End-Of-Life

    September 24, 2025
  • Blocking NTLM Connections on Windows 11 and Windows Server 2025

    September 23, 2025
  • Windows Stucks at ‘Getting Windows Ready, Don’t Turn Off Computer’

    September 15, 2025
  • Clean Up ETL Log Files in ProgramData

    September 9, 2025
  • Fix: Slow Startup of PowerShell Console and Scripts

    September 3, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
  • How to Delete Old User Profiles in Windows
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Backup and Copy Local Group Policy Settings to Another Computer
  • How to Fix ‘An Operating System Wasn’t Found’ Error on Windows
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top