Skip to content
Fixes & Errors

Fix Network Adapter Missing on Windows 11

Network adapter missing on Windows 11 removes internet access completely. Here is the calm, practical 2026 recovery guide that restores connectivity without panic.

Fix Network Adapter Missing on Windows 11

You open Network & Internet settings expecting the usual WiFi or ethernet options and find a blank area where the network adapters should be. Or Windows Settings says “No connections available.” Or Device Manager shows the Network adapters section missing entirely, without a single adapter listed. The problem of network adapter missing on Windows 11 is one of the more alarming device issues because it removes internet access completely — no WiFi, no ethernet, nothing — and the usual browser-based troubleshooting instinct is immediately useless when the network is completely gone. For the bigger picture, our Complete Guide to Fixing Windows, Browser, and Software Errors pulls everything together.

The encouraging news is that network adapter missing in 2026 almost always traces back to one of a small set of identifiable causes — a driver that has been removed or corrupted by a Windows update, the adapter being disabled in Device Manager, a registry corruption that hides the adapter from Windows’ device enumeration, or the BIOS/UEFI disabling the built-in network hardware. Physical hardware failure is possible but is the least common cause and the last to consider after software-side fixes have been ruled out.

This guide walks through the systematic approach I use when a friend reports network adapter missing on their Windows 11 machine — the keyboard-only navigation required when the network is down, the diagnostic order from the simplest causes to the most involved, the targeted fixes for each category, and the practices that prevent recurrence.

Navigating Without Network When Network Adapter Missing

The network adapter missing situation creates a practical challenge: most troubleshooting resources and driver downloads require internet access, which is exactly what is missing. The first priority is establishing some form of internet access before attempting deeper fixes.

Connect a USB WiFi adapter. A basic USB WiFi dongle costs under fifteen dollars and provides immediate internet access when the built-in adapter is not visible. Windows 11 installs basic drivers for most USB WiFi adapters automatically from the local driver cache. This is the fastest path to regaining internet access for troubleshooting. Even without internet, you can access the local help documentation and system tools that do not require connectivity.

Use a phone as a USB tethering hotspot. Connect your phone to the laptop via USB, enable USB tethering in the phone’s mobile hotspot settings, and Windows 11 installs a RNDIS adapter that gives the laptop network access through the phone’s mobile connection. This is free if your mobile plan includes tethering and does not require buying any hardware. The tethered connection appears in Network & Internet settings as a separate adapter even when the primary network adapter missing symptom is present.

Use another device to download the network driver to a USB drive. If you know which wireless or ethernet adapter your laptop contains (visible in your laptop’s spec sheet or in the BIOS hardware information), downloading the current driver from the manufacturer’s site on another computer and transferring it via USB means you can reinstall the driver without any internet access on the affected machine. According to official platform documentation, Windows driver reinstallation from local files works identically to online installation and does not require the adapter to be functioning to install its own driver.

The Diagnostic Order for Network Adapter Missing

Once you have some path to internet access (or access to a downloaded driver), the systematic diagnostic flow addresses causes from most to least likely.

  1. Open Device Manager. Windows+X → Device Manager. Look for “Network adapters” in the list. If it is present but the adapter entry is missing from within it, look for the adapter in “Other devices” (shown with a yellow question mark when Windows found hardware but could not match it to a driver).
  2. Show hidden devices. In Device Manager, View → Show hidden devices. The network adapter sometimes appears as a greyed-out hidden entry after being disabled or after a driver removal. Right-clicking a hidden adapter and choosing Enable device often immediately restores it.
  3. Scan for hardware changes. In Device Manager, Action → Scan for hardware changes. Windows re-interrogates the hardware bus and may detect the adapter that it previously missed. This resolves a specific class of network adapter missing situations where the device is physically present but Windows lost track of it during an update.
  4. Reinstall the network adapter driver. If the adapter appears in Other devices or as an unrecognised device, right-click → Update driver → Browse my computer → Let me pick from a list. Select Network adapters and look for the correct manufacturer and model, or use a downloaded driver package from the USB drive approach above.
  5. Run the Windows network troubleshooter. Right-click the network icon (if visible) → Diagnose network problems. Even without a working network the troubleshooter can detect and fix certain adapter-missing causes automatically.
  6. Reset the network stack. Open Windows Terminal as administrator (searchable even without network access) and run: netsh winsock reset, then netsh int ip reset, then restart. This rebuilds the core networking components from scratch and resolves registry-level corruption that can hide adapters.
  7. Check the BIOS/UEFI. Restart the machine, enter BIOS setup (usually F2 or Delete during boot), and look for a “Wireless LAN” or “Integrated NIC” setting. Confirm it is enabled. Some BIOS updates reset this to disabled.
  8. Run SFC and DISM. sfc /scannow then DISM /Online /Cleanup-Image /RestoreHealth from an elevated terminal to repair any corrupted system files affecting network component registration.

The scan for hardware changes in step three is among the faster fixes and is worth trying immediately after opening Device Manager. It takes five seconds and resolves the specific class of network adapter missing situations where Windows lost device enumeration state during a botched update but the driver files are still intact. Our companion walkthroughs on WiFi not working on Windows 11 and ethernet no valid IP configuration cover the related driver and networking issues that share diagnostic approaches with the adapter-missing scenario.

Windows Update Causes of Network Adapter Missing

Windows updates are the most common trigger for network adapter missing situations, particularly for built-in wireless adapters on laptops. The update process occasionally uninstalls and fails to correctly reinstall the network driver, leaving the adapter absent from Device Manager.

Quick tip — if network adapter missing appeared immediately after a Windows Update, the fastest recovery may be using Windows’ built-in automatic recovery. Restart the machine, hold Shift during restart to enter the Windows Recovery Environment, choose Troubleshoot → Advanced options → Uninstall updates → Uninstall latest quality update. This removes the problematic update and typically restores the network adapter without any manual driver intervention, because the update rollback also rolls back the driver changes the update made.

For cases where update rollback is not practical, reinstalling the network driver from the manufacturer is the next step. The laptop manufacturer’s support site (Dell, Lenovo, HP, ASUS, etc.) has drivers specifically validated for each laptop model. Searching the model number on the manufacturer’s site, filtering to network/wireless drivers, and downloading the current package produces a driver installer that handles everything. Run the installer on the affected machine (transferred via USB from another device if needed) and restart — the network adapter missing situation resolves as soon as the driver is registered correctly. Reviews from outlets like major technology publications regularly highlight that using manufacturer drivers rather than the Windows Update generic drivers produces more reliable results for network adapters specifically in 2026.

For enterprise and domain-joined machines, network adapter missing after a policy update or group policy change can reflect a deliberate IT action rather than a bug. Some organisations use group policy to disable specific hardware adapters on managed devices (wireless adapters on machines that should only use wired connections, for example). If the machine is IT-managed and network adapter missing appeared after a policy push, contacting IT is the appropriate escalation path rather than attempting to re-enable the adapter independently.

Registry and Network Stack Causes of Network Adapter Missing

When driver reinstallation and update rollback have not resolved network adapter missing, the cause is often deeper in the Windows networking stack or the registry component that maps hardware to drivers.

The Windows networking registry keys can become corrupted in ways that hide adapters from Device Manager even when the driver and hardware are both present. The most reliable fix for registry-level network adapter missing is the network stack reset sequence: netsh winsock reset followed by netsh int ip reset followed by a full restart. These commands rebuild the Winsock and IP configuration in the registry without touching anything else, and they resolve a meaningful share of stubborn network adapter missing cases that driver reinstallation alone cannot fix.

The Windows TCP/IP Driver (tcpip.sys) is a core system file that occasionally becomes corrupted and produces network adapter missing symptoms across all adapter types simultaneously. The SFC command repairs this file when it detects corruption. If SFC reports that it found and repaired corrupted files, the network adapter missing situation often resolves on the next reboot without any further intervention. If SFC cannot repair the file, the DISM restore-health command downloads clean replacements from Windows Update and completes the repair.

According to official cybersecurity guidance, network component corruption that produces network adapter missing is occasionally caused by malware that targets the networking stack. A machine that has lost its network adapter with no obvious software cause — no recent update, no known driver change — is worth scanning with offline malware tools (bootable rescue media from Kaspersky, ESET, or similar) before assuming hardware failure. The offline scan catches threats that have established persistence in the networking layer in ways that make them invisible to in-system scanners. Our companion walkthroughs on WiFi connected but no internet, WiFi keeps asking for password, and ethernet no valid IP configuration cover the related networking issues that often appear alongside or after network adapter problems.

Preventing Network Adapter Missing From Recurring

Once the immediate network adapter missing situation is resolved, several practices reduce the chance of the same problem recurring. Each addresses one of the identified root causes.

Create a system restore point before major Windows updates. A restore point captures the current system state — including driver registrations and network configuration — and allows restoring to that state if a subsequent update causes network adapter missing or any other system regression. Windows → Search → Create a restore point → Create: takes two minutes and provides a clean rollback option that is faster than driver reinstallation in most cases.

Keep a copy of the network driver installer on a USB drive. A prepared USB drive with the current wireless and ethernet driver installers for your specific laptop model means that any future network adapter missing situation has an immediate resolution path regardless of internet access. The driver files are small, change infrequently, and are straightforward to update quarterly when new versions ship.

Know how to access the Windows Recovery Environment. The Shift+Restart sequence from the sign-in screen always works regardless of network state, and knowing it means you can reach the update uninstall and system restore options in under two minutes any time they are needed. Building this knowledge before an emergency avoids the anxiety of learning a recovery sequence when a critical machine is offline. With these preparations in place, network adapter missing becomes a manageable incident with a known resolution path rather than a crisis that leaves a machine without internet access for an extended period.

A final framing worth holding throughout this investigation: network adapter missing is one of the few Windows problems that is more frightening than it is difficult to fix. The absence of the adapter makes the machine feel fundamentally broken, but in the overwhelming majority of cases the hardware is perfectly fine and the fix is either a driver reinstall, a registry reset, or an update rollback — each taking ten to thirty minutes. The fear response that drives people to factory-reset a machine when a network adapter goes missing is almost always disproportionate to the actual severity of the issue. Methodical diagnostic steps, starting with the simplest (show hidden devices, scan for hardware changes) and working toward the more involved (stack reset, driver reinstall), resolve nearly every case without permanent data loss.

One more pattern worth recognising: if network adapter missing happens repeatedly on the same machine — appearing after updates and coming back after fixes — the machine may have a driver incompatibility that persists across Windows versions, or there may be a firmware issue causing the BIOS to intermittently hide the adapter from Windows. In the repeating-incident case, contacting the laptop manufacturer’s support with documentation of the pattern and the Windows version in which it occurs produces a more useful response than generic troubleshooting, because the manufacturer may be aware of the specific interaction and have a permanent fix in their firmware or driver pipeline.

Nikolas Lamprou

Nikolas Lamprou (MSc; GCFR, SC-200, Security+) has been working with computers professionally since 2009 — starting with web development and e-commerce, and moving into cybersecurity over the years. Based in Greece, he brings over 15 years of real-world IT experience to SolveTechToday, where he writes about Windows fixes, software reviews, security tools, and AI applications. His goal is straightforward: cut through the noise and give readers clear, honest guidance on the tech decisions that matter.

Stay Ahead

Fix your next problem before it starts

Get the week's best Windows fixes, software picks, and security guides delivered straight to your inbox. No noise, just solutions.

Press ESC to close · Try "Windows 11" or "Chrome"