Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 10 / Fix: Network Adapters Are Missing in Windows

November 10, 2022 Windows 10Windows 11Windows Server 2019

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 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 could not 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 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
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 Connect VPN Before Windows Logon

November 14, 2023

Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

November 7, 2023

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

How to Use Ansible to Manage Windows Machines

September 25, 2023

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • How to Connect VPN Before Windows Logon

    November 14, 2023
  • Removing Azure Arc Setup Feature on Windows Server 2022

    November 9, 2023
  • Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

    November 7, 2023
  • Send Emails with Microsoft Graph API and PowerShell

    November 6, 2023
  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023

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
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
Footer Logo

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


Back To Top