Situations requiring precise identification of a network module installed in a system arise quite frequently. This may be necessary to find up-to-date drivers, check compatibility with new communication standards, or simply diagnose network problems. Users often confuse the device's software name, displayed in the Windows interface, with the actual hardware model of the chip. Understanding this difference is critical when searching for specifications.
There are several proven methods that allow you to obtain comprehensive information about iron component your network interface. Some methods require just a couple of mouse clicks, while others require system utilities. We'll cover all available options, from the simplest to the most advanced, so you can choose the one that's most convenient for you.
It's important to understand that the operating system sometimes displays generic names like "Wireless LAN Adapter" or "802.11n USB Wireless LAN Card." These names don't provide any useful information for finding drivers. Our goal is to get to the specific manufacturer's markings, for example, Realtek RTL8812BU or Intel AX200, which will allow you to find exactly the software that your equipment needs.
Using Device Manager to Identify
The most obvious and accessible method is to use the standard system tool, Device Manager. This method doesn't require installing any additional software and works on all versions of Windows starting with XP. However, as mentioned above, the standard display may not be informative enough, so we'll go a little further than simply browsing the list.
To start, press the key combination Win + X and select "Device Manager" from the menu. In the window that opens, find the "Network Adapters" section and expand it. You'll see a list of all network interfaces. Typically, a wireless module will have "Wireless," "Wi-Fi," or "802.11" in its name. If the device is marked with a yellow exclamation point, the driver isn't installed or isn't working correctly, but the chip's name should still be displayed.
β οΈ Note: If there are no devices with the word "Wireless" in the list, the adapter may be physically disconnected, faulty, or hidden. In the Device Manager menu, click "View" β "Show hidden devices" to check for hidden devices.
For more detailed information, double-click the device name and go to the "Details" tab. From the "Property" drop-down list, select "Hardware ID." Here you will see lines like VEN_8086&DEV_2723. Code VEN denotes the manufacturer (Vendor), and DEV β a specific device. Knowing these codes allows you to accurately identify the chip even without installed drivers.
There are many manufacturers, and their codes are often repeated in different laptop models. For example, the code 8086 belongs to Intel, 10EC β Realtek, and 14E4 β Broadcom. Memorizing these codes isn't necessary, but understanding their structure helps you quickly navigate technical specifications on forums or support sites.
Getting information via the command line
For those who prefer a text-based interface or need quick access to data without a graphical interface, the Windows command line provides a powerful tool. netsh (Network Shell) allows you to manage network settings and display detailed configuration information. This method is especially useful when the system's graphical interface is unstable.
Run the command prompt as administrator. To do this, enter cmd In the search box, right-click on the result and select the appropriate option. In the window that opens, enter the command netsh wlan show driversThe system will provide a detailed report on the wireless network driver, including the publisher name, version date, and, most importantly, the device description.
netsh wlan show drivers
In the command output, look for the line "Description." This will list the full model name. Also, pay attention to the "Type" lineβit confirms that this is a wireless interface. This method often provides a more accurate name than Device Manager, as it relies on the active driver.
Another useful command is - ipconfig /allIt displays the complete configuration of all network adapters. Find the block corresponding to the wireless connection (usually labeled "Wireless Network" or containing the word "Wireless"). The physical address (MAC address) description often indicates the adapter model, although this depends on the quality of the drivers.
PowerShell analysis for detailed diagnostics
PowerShell is a more modern and flexible alternative to the classic command line. It lets you retrieve structured data directly from the operating system using WMI (Windows Management Instrumentation) or CIM. This allows you to see information hidden in traditional property windows.
Open PowerShell (regular PowerShell is fine, administrator privileges are recommended, but not always required for reading) and enter the following command: Get-NetAdapter | Where-Object {$_.InterfaceDescription -like "wireless" -or $_.InterfaceDescription -like "wifi"} | Select-Object Name, InterfaceDescription, DriverVersionThis script will filter only wireless adapters and display their descriptions and driver versions.
If you need the most technical information, use a query to the Win32_NetworkAdapter class. Command Get-WmiObject Win32_NetworkAdapter | Where-Object {$_.NetEnabled -eq $true} | Select-Object Name, Manufacturer will display a list of active adapters with the manufacturer indicated. Field Manufacturer here is the key to determining the brand of the chip.
Advanced PowerShell Script for Data Export
You can save the scan results to a text file by adding the following line to the end of the command: | Out-File C:\wifi_info.txt . This is convenient for sending a report to a technical support specialist or saving it to a configuration archive.
The advantage of PowerShell is its automation capabilities. If you're a system administrator and need to check adapters on multiple computers, you can create a script that will collect this data and send it to the server. For the average user, it's enough to know that this tool provides access to the inner workings of Windows.
Programs for monitoring and identifying equipment
When built-in Windows tools are insufficient or produce inconsistent data, specialized utilities come to the rescue. These programs scan your computer's hardware and present information in a convenient, structured format. They often reveal data that Windows, for whatever reason, hides or simplifies.
One of the most popular and lightweight programs is AIDA64 (formerly Everest). Under "Network" β "Windows Network," you can find detailed information about each network adapter. The program will show not only the name, but also the current connection speed, MAC address, DHCP status, and even physical specifications if available in the BIOS.
Another great option is the utility HWInfo or CPU-Z (Network tab). These tools are free for home use and require no installation (portable versions). They're ideal for quickly checking hardware without delving into system registries. The report will show the exact device ID and vendor.
- π‘ AIDA64 Extreme β a paid but powerful tool with a trial period that provides the most detailed information.
- π» HWInfo64 β a completely free utility that perfectly reads sensors and equipment identifiers.
- π Device Manager Plus β a portable alternative to the standard device manager with advanced functionality.
Using third-party software is especially important if you're planning an upgrade or purchasing new equipment. Knowing the exact model of your current adapter will allow you to compare its specifications with new standards, such as Wi-Fi 6E or Wi-Fi 7, and make an informed decision about whether to upgrade.
Model determination by physical marking
If software methods fail (for example, the device isn't detected by the system at all), the only option left is a physical inspection. This is especially true for desktop PCs with internal PCIe cards or laptops that the user is willing to disassemble. There are always markings on the chip itself or on a sticker on the module.
For USB adapters, simply look at the device's case. The model name is often printed in small print on the label. If only the serial number is listed, you can enter it on the manufacturer's website to find the specifications. For internal cards, you'll need to remove the case cover.
Look for a large chip on the adapter board. It usually has the manufacturer's logo (Realtek, Intel, Qualcomm Atheros, MediaTek) and model number stamped on it. For example, the markings RTL8814AU The wireless module's name immediately indicates that it's a powerful adapter with AC1900 support. In laptops, wireless modules are often in M.2 or Mini-PCIe format and have a standard sticker with the MAC address and model.
β οΈ Caution: Before opening your computer or laptop, be sure to unplug the device and remove the battery (if possible). Breaking the seals may void the device's warranty.
A physical inspection can also help identify the presence of antennas. On some internal cards, the antenna wires may be disconnected, resulting in extremely low signal strength. Ensuring the module is seated securely in the slot and the wires are connected will help rule out hardware-related connection issues.
Comparative table of identification methods
To systematize the knowledge we've gained, let's summarize all the methods in a single table. This will help you quickly choose the appropriate method based on your situation and system access level.
| Method | Complexity | Data accuracy | Requires admin rights |
|---|---|---|---|
| device Manager | Low | Average (often a common name) | No |
| Command line (netsh) | Average | High | Yes (preferred) |
| PowerShell (WMI) | High | Maximum | Yes |
| Third-party software | Low | Maximum | No |
| Physical examination | High | 100% (hardware) | No |
As can be seen from the table, for most users, third-party programs or a command offer the optimal balance between simplicity and information content. netshHowever, if the system is unstable, knowing how to navigate through Device Manager becomes a vital skill.
βοΈ Driver search steps
Frequently Asked Questions (FAQ)
Why is the adapter called "Unknown Device" in Device Manager?
This means the operating system doesn't have a driver installed for this hardware. Windows sees that something is connected, but doesn't know how to use it. In this case, the only solution is to determine the hardware ID (VEN/DEV) and manually install the drivers from another computer or via an Ethernet cable.
Can the adapter name change after a Windows update?
The hardware name itself may not change, but the display name in the system sometimes does. For example, after a major update, Windows may replace the standard Microsoft driver with a manufacturer-specific one, and the name in Device Manager will become more specific (for example, instead of "Generic Wireless," it will appear as "Intel Wi-Fi 6 AX201").
Does the adapter name affect internet speed?
Indirectly, yes. The name indicates the standard generation (for example, the presence of the words AC or AX in the model). If you have a 500 Mbps plan, but the adapter only supports the older N standard (up to 150 Mbps), you won't get the advertised speed. Therefore, knowing the model is important for understanding the potential of your network.
Where can I find a driver if the laptop manufacturer's website no longer exists?
If the brand's website (for example, for an old laptop) is down, use the chip identifier (VEN/DEV) found in Device Manager. This code can be used to find the driver on the chip manufacturer's website (Realtek, Intel, Atheros) or on specialized, trusted resources.
What should I do if my Wi-Fi adapter has disappeared from the list of devices?
If the adapter has disappeared even from the hidden devices, try a static discharge. Turn off the laptop, unplug the charger, remove the battery (if removable), and hold the power button for 20 seconds. Then reassemble everything and turn it on. This often restores the "missing" modules.