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 10 / Fix: Network Adapters Are Missing in Windows

March 15, 2024

Fix: Network Adapters Are Missing in Windows

After converting one of my Windows hosts to a virtual machine using P2V, I found that all network adapters were missing from the Network Connections section in the Control Panel. At the same time, I see a properly installed Ethernet NIC in the Network Adapters section of the Device Manager. In my case, the problem was solved by simply resetting the network settings using the Network Reset button in the Settings pane, but I decided to go further and troubleshoot the problem.

In this article, I tried to describe typical steps to check if network adapters are not displayed in Windows. This guide will help you to restore network connectivity both in Windows 10/11 and in Windows Server.

missing network connections icons in Windows

Here are the typical reasons why network adapters are not displayed in Windows:

  • Network adapter drivers are not installed;
  • Wrong NIC drivers are installed;
  • There are no physical network adapters on the computer or laptop, they are not connected, or damaged;
  • Windows network stack failure.

Open the Device Manager (devmgmt.msc) and make sure that there are physical devices in the Network Adapters section. These could be Wi-Fi network adapters (Wireless) or Ethernet (wired) adapters.

Ignore Wan Miniport virtual network adapters that are used for VPN connections.

If there are no devices in the Network Adapters section, but you see any Unknown device or Network Controller device with yellow exclamation marks in the Other device section, try to detect the type of the device and install the appropriate driver. Perhaps this is your missing network adapter.

Make sure that automatic driver updates is enabled in Windows. Try to perform an automatic driver search. Windows should detect the device and install the appropriate drivers.

If Windows cannot detect a device, you need to identify it manually. Find the VID and PID of the unknown device (Properties -> Details -> Hardware IDs). Copy the IDs and search in Google. For example, PCI\VEN_14E4&DEV_43A0 is a Broadcom wireless network adapter. Thus, you can identify your NIC, download, and install its driver.

unknown network adapter - check for VID and PID

If the list of network adapters is empty and there are no unknown devices on your computer, search for the devices in the Device Manager (Action -> Scan for hardware changes).

scan for hardware change with device manager

Then check that your network card is physically connected to your computer/laptop and is enabled in BIOS/UEFI settings. You may need to check your NIC on another computer (if possible) or check its functionality at the service center (it may be broken).

If your network adapter shows up in the Device Manager but doesn’t show up in the Network Connections, try to uninstall and re-install it.

  1. Right-click your network adapter in the Device Manager and select Uninstall Device; uninstall network adapter in windows
  2. Perform device discovery (Action -> Scan for hardware changes);
  3. Windows will find and install the most appropriate driver for your network adapter.
If it does not help, try to download your network adapter driver from the vendor’s website and install it manually.

Make sure that the network adapter is enabled in Device Manager. Disabled devices have an icon with a small down arrow. Enable the device using the context menu.

enable network adapter

If only wireless network adapters are not displayed, make sure that the WLAN AutoConfig service is enabled. Check the service state with PowerShell:

Get-Service WlanSvc

check for wlan autoconfig service

If the service is disabled, enable it and change its startup type to automatic:

Set-Service WlanSvc –startuptype automatic –passthru
Start-Service WlanSvc –PassThru

You must manually enable the feature that provides Wi-Fi support on Windows Server (by default, the Wireless-Networking component is disabled).

Reset network settings and TCP/IP stack settings in Windows using the commands below (run the cmd.exe run as administrator):

netsh winsock reset catalog
netsh winsock reset
netsh int ip reset

Open network settings in the modern Settings pane (for quick access use the URI command ms-settings:network) and click Network Reset.

reset network in windows 10

Restart your computer.

If nothing helped:

  • If a third-party antivirus is installed on your computer, try to uninstall it;
  • Run the Windows Network Troubleshooter using the command: msdt.exe /id NetworkDiagnosticsNetworkAdapter
  • Check and repair your Windows image using DISM and SFC:
    sfc /scannow
    DISM /Online /Cleanup-Image /CheckHealth
0 comment
1
Facebook Twitter Google + Pinterest
Windows 10Windows 11Windows Server 2019
previous post
Fixing VPN Error: Can’t Establish Connection, Change Network Settings
next post
The update is not applicable to your computer: Windows Update Error

Related Reading

How to Repair EFI/GPT Bootloader on Windows 10...

March 16, 2024

How to Restore Deleted EFI System Partition in...

March 11, 2024

How to Run Program without Admin Privileges and...

June 8, 2023

Wi-Fi (Internet) Disconnects After Sleep or Hibernation on...

March 15, 2024

How to Repair Windows Boot Manager, BCD and...

March 11, 2024

PowerShell: Get Folder Size on Windows

April 2, 2024

Fix: The Computer Restarted Unexpectedly or Encountered an...

May 16, 2024

Network Computers are not Showing Up in Windows...

March 15, 2024

Leave a Comment Cancel Reply

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

Recent Posts

  • Failed to Open the Group Policy Object on a Computer

    June 2, 2025
  • Remote Desktop Printing with RD Easy Print Redirection

    June 2, 2025
  • Disable the Lock Screen Widgets in Windows 11

    May 26, 2025
  • Configuring Windows Protected Print Mode (WPP)

    May 19, 2025
  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Repair EFI/GPT Bootloader on Windows 10 or 11
  • How to Restore Deleted EFI System Partition in Windows
  • Network Computers are not Showing Up in Windows 10/11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
Footer Logo

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


Back To Top