Determining the exact model of network hardware is often a critical step when updating drivers or diagnosing connection issues. Operating system users Windows 10 You may encounter a situation where the system doesn't display the device name in the familiar interface or you need to check support for specific communication standards. In such cases, you need to resort to more in-depth methods of checking system information.
There are several proven methods for obtaining comprehensive data about your network module without installing third-party software. We'll cover both standard graphical interfaces and console commands that provide detailed reporting. Understanding your equipment's specifications will help you avoid mistakes when selecting updates and ensure stable operation of your wireless network.
Using Device Manager to Identify
The most accessible and affordable way to obtain information about the hardware composition of a computer is the standard device ManagerThis tool allows you to see all connected components, even if they don't have the correct drivers installed. To access the desired section, right-click the Start button and select the appropriate item from the context menu, or use the keyboard shortcut. Win + X.
In the window that opens, find the "Network Adapters" category and expand its contents. This is where the full list of network interfaces is displayed, including wired Ethernet cards and wireless modules. Typically, the name of a wireless adapter includes keywords. Wireless, Wi-Fi, 802.11 or names of chip manufacturers such as Intel, Realtek or Qualcomm Atheros.
If a device displays with a yellow exclamation point, it means the driver is missing or not working properly. In this case, the system may identify it as an "Unknown Device," and the hardware ID will be needed to determine the exact model. Double-clicking the device will open the properties window, where you can select the "Hardware IDs" property on the "Details" tab.
⚠️ Important: If you see an unknown device, do not attempt to install drivers randomly. Use the detected hardware code (VEN and DEV) to search for the correct software on the official website of the motherboard or laptop manufacturer.
The resulting codes are unique identifiers that can be used to accurately determine the chip model even in the most complex cases. For example, the string PCI\VEN_8086&DEV_08B1 will point to a specific Intel controller. This knowledge allows you to find the required driver even if automatic installation via Windows Update fails.
Getting information via the command line
For more advanced users and system administrators, the command line is a great tool. It displays structured information about network interfaces in text format, making it easy to copy and analyze. Launch the command line as administrator by entering cmd in the system search.
The basic command for getting general information is ipconfig /allHowever, for a detailed study of the wireless adapter, it is better to use a more specific query. Enter the command netsh wlan show interfaces and press Enter. The system will display a detailed report on the current Wi-Fi connection status.
netsh wlan show interfaces
In the output of this command, you'll find the "Name" string, which often matches the adapter model, as well as information about the radio type, connection status, and even the current receive/transmit speed. If the adapter is disabled programmatically, it may not appear in this list, but it will be visible in Device Manager.
Another useful command for getting summary information about all network interfaces is netsh interface show interfaceIt will show the status of all connections, their type, and metric. To obtain technical information about the driver, you can use the command driverquery, filtering the results by device name.
Analysis via system information (msinfo32)
The System Information utility is a powerful aggregator of computer configuration information. It collects registry data and presents it in a convenient tree format. You can launch the program from the Run window (Win + R), by entering the command msinfo32.
In the left pane of the window, expand the "Components" branch and select "Network." A list of all network adapters will appear on the right. Find your Wi-Fi module in the list. It displays not only the name but also the driver version, manufacturer, adapter type, and its status.
Particular attention should be paid to the “Service” field, which indicates the name of the driver in the system, and “Adapter Type”, where the standard can be indicated, for example, 802.11ac or 802.11axThis information is useful when comparing the device's stated specifications with the actual system data.
The advantage of this method is its versatility: it works even when the network settings graphical interface is glitchy or doesn't display complete data. System information reads information directly from the operating system kernel, providing the most accurate data at the current moment.
Checking Characteristics in PowerShell
The modern Windows 10 operating system makes extensive use of PowerShell for configuration management. This tool offers more flexible filtering and data output options than the classic command line. Open PowerShell through the search or Start menu.
To get information about network adapters, use the cmdlet Get-NetAdapterHowever, to see the wireless interfaces specifically, it is better to use the command Get-NetAdapter | Where-Object {$_.InterfaceDescription -like"Wireless" -or $_.InterfaceDescription -like"Wi-Fi"}This will filter the list to show only Wi-Fi adapters.
More detailed information, including the physical name of the device (PNP Device ID), can be obtained using the command Get-NetAdapter | Select-Object Name, InterfaceDescription, Status, MacAddressThe output will be presented in a table format, making it easy to read the main parameters.
| Parameter | Description | Where is it used? |
|---|---|---|
| Name | The logical name of the adapter in the system | Network setup, PowerShell |
| InterfaceDescription | Full name of the adapter model | Equipment identification |
| MacAddress | Physical address of the device | Access filtering in a router |
| Status | Current state (Up/Down) | Connection diagnostics |
PowerShell also lets you find out supported security protocols and operating modes using specialized Wi-Fi modules. Using standard tools, you can quickly check whether the adapter is enabled and functioning correctly from the operating system's perspective.
Hidden PowerShell Commands for Networking
You can use the Reset-NetAdapterAdvancedProperty command in PowerShell to reset the network stack, but this requires caution. A safer option is the Restart-NetAdapter cmdlet, which will reconnect the interface without rebooting the PC.
Using the DXDIAG utility and other tools
Although the utility DXDIAG Primarily designed for diagnosing DirectX and video adapters, it also contains tabs related to multimedia and sometimes network devices, although this is not its primary tool. A more relevant built-in tool is the DirectX diagnostic utility, launched with the command dxdiag, but for the network it provides little information.
The network diagnostics tool is much more useful in Windows 10. Go to "Settings" → "Network & Internet" → "Status." At the bottom of the page, there's a link called "Advanced network settings" or "Diagnostics." Here you can see the properties of your active connection, including the adapter model.
The Task Manager is also worth mentioning. If you click Ctrl + Shift + Esc If you go to the "Performance" tab, you'll find "Wi-Fi" in the left column. Clicking it will display the adapter model name and its current load in the upper right corner. This is a quick visual check.
⚠️ Note: The Windows 10 Settings interface is constantly being updated. The location of menu items may vary slightly depending on your build version (Home, Pro, Enterprise) and installed updates. If you don't see the item, try searching in Settings.
Using multiple methods in a row allows you to double-check the data and verify its accuracy. For example, if Device Manager shows one model, but the connection properties show a different one, this could indicate a driver conflict or network virtualization.
Model identification by physical access and equipment ID
In situations where the operating system fails to boot or the adapter isn't detected by software, the only solution is a physical inspection. For desktop PCs, this may involve inspecting the PCIe card; for laptops, it may involve disassembling the back cover (if the warranty and design allow it). The exact model number is always indicated on the module's sticker.
Modules of the form factor are often found M.2 or Mini PCIeThey are marked with the manufacturer's markings, for example, Intel AX200 or Realtek RTL8822BEKnowing this marking, you can find specifications and drivers on the vendor's website. This is especially important for older laptops or custom builds.
If the device cannot be disassembled and the system reports "Unknown Device," consider the VEN and DEV codes. The VEN (Vendor ID) code identifies the manufacturer, while the DEV (Device ID) identifies the specific device. There are online databases where you can enter these codes (for example, VEN_8086 DEV_008F) to obtain the exact chip name.
☑️ Wi-Fi Adapter Diagnostic Checklist
It's important to understand the difference between USB adapters and internal modules. USB adapters are often identified as external devices and may have their own configuration utilities. Internal modules are hardwired to the PCIe or USB bus inside the case and are controlled by system drivers.
Common problems and their solutions
One common issue is the adapter disappearing from the list after a Windows update. This is often due to the system installing a generic driver that conflicts with the hardware. In this case, "Roll Back Driver" in the device properties or manually installing the manufacturer's version can help.
Another problem: the adapter is visible but won't turn on. Check if it's disabled in the BIOS/UEFI. Some corporate laptops have a security setting that prevents the use of wireless modules. You should also check the physical switches on the laptop case or the key combination (Fn + F-key).
If the adapter is unstable, try changing the power settings. In the adapter properties in Device Manager, on the "Power Management" tab, uncheck "Allow the computer to turn off this device to save power." This will prevent the module from turning off when it's idle.
⚠️ Warning: Updating your motherboard BIOS may reset your wireless module settings. If Wi-Fi is lost after updating your BIOS, check the Integrated Peripherals settings in BIOS Setup.
If the system is completely inoperable and doesn't respond to reconnection (for USB) or reboot, there's a high probability of physical module failure. In such cases, replacing the adapter is often cheaper and faster than lengthy diagnostics.
Conclusion and final recommendations
Knowing how to identify your Wi-Fi adapter in Windows 10 is a basic skill for any PC user. It allows you to quickly resolve connection issues, select the right drivers, and understand the capabilities of your hardware. We've covered methods ranging from a simple visual inspection to using the command line.
It's recommended to periodically check for driver updates, especially if you're using older adapter models that may not support the new WPA3 security standards or the 5 GHz frequency band by default. Use Device Manager as your primary monitoring tool.
Remember that network stability depends not only on the router, but also on the quality of the client device drivers. Regular maintenance and knowledge of the technical specifications of your Wi-Fi adapter will ensure comfortable use of the Internet without unexpected connection interruptions.
What to do if nothing helps?
If none of the software methods detect the adapter, and Device Manager only shows "Unknown Device" with error code 43 or 10, try completely uninstalling the device from Device Manager (right-click -> Uninstall device) and restarting your computer. Windows will attempt to reinstall it from scratch.
Frequently Asked Questions (FAQ)
Why does Device Manager show "Unknown Device" instead of the adapter's name?
This means Windows couldn't find a suitable driver for this hardware. You need to find the hardware ID in the device properties and download the driver manually from the laptop or chip manufacturer's website.
Is it possible to find out the model of a Wi-Fi adapter without access to Windows?
Yes, this can be done via BIOS/UEFI (System Information section), via a bootable flash drive with Linux (Live USB), or by physically inspecting the sticker on the module itself inside the case.
How do I know if my adapter supports 5GHz?
Check the model name in Device Manager. If the name includes "Dual Band," "AC," "AX," or "5G," it supports 5G. You can also enter the command netsh wlan show drivers and find the line "Supported radio types".
Where can I download the driver if Windows doesn't detect Wi-Fi?
Use another computer or smartphone to download the driver from the official website of your laptop or motherboard manufacturer. Save the file to a flash drive and install it on the affected PC.
Does Windows 10 version affect adapter detection?
Yes, newer Windows 10 builds (e.g. 21H2, 22H2) contain more recent driver databases and can automatically detect devices that were identified as unknown in older versions (1507, 1607).