When a wireless connection suddenly stops working or becomes unstable, installing new drivers is often necessary. However, standard Windows tools don't always correctly identify the hardware, displaying only a generic name like "802.11n Wireless LAN Card." This creates a vicious cycle: to download a driver, you need to know the exact model, but the system hides it.
Knowledge of the specific Vendor ID And Device ID This is critical when searching for compatible software, especially for older laptops or unmarked Chinese USB dongles. In this article, we'll cover all available identification methods, from simple system utilities to deep registry analysis, allowing you to resolve your network issue once and for all.
Sometimes laptop manufacturers use custom versions of modules, and searching by laptop name can lead to the installation of incompatible software. This is why physical hardware identifier (Hardware ID) is the only reliable key to finding the required driver in the global database.
Using Device Manager for initial diagnostics
The most obvious and accessible way is the built-in system tool. Device Manager. It provides basic information about all connected hardware, but often requires additional configuration to display complete data. To access it, right-click the Start button and select the appropriate option or type devmgmt.msc in the execution line.
In the window that opens, look for the "Network Adapters" section. Expand it, and you'll see a list of all network interfaces. If the driver is installed correctly, you'll see the chipset name, for example, Intel Dual Band Wireless-AC 8265 or Realtek RTL8822BEHowever, if there is a yellow triangle icon or the device is shown as "Unknown device", the default name may not be present.
If the name is missing, double-click the device, go to the "Details" tab, and select the "Hardware ID" property from the drop-down list. Here you will see lines like PCI\VEN_8086&DEV_24FDThese codes VEN (Vendor) and DEV (Device) is a unique passport for your module, which can be used to find the driver even without the model name.
β οΈ Attention: If there's no "Network Adapters" section in Device Manager, or the Wi-Fi module isn't even listed as an unknown device, check to see if the adapter is physically disabled. Many laptops have a key combination (e.g.,
Fn + F2) or a hardware switch on the case that completely de-energizes the module.
For a more in-depth analysis, you can use the "View" menu in the top panel of Device Manager and select "Show hidden devices." This will help you see previously connected USB adapters or virtual interfaces that may be conflicting with the current connection.
Command Prompt and PowerShell: Getting Detailed Information
The graphical interface isn't always convenient when you need to quickly copy data or access hidden settings. The Windows command line allows you to extract much more technical details about the network and adapter status from the system. Launch the terminal as administrator by entering cmd in search.
The basic command to get information about wireless interfaces is netsh wlan show interfacesIt displays a detailed report, including not only the adapter name but also the radio type (802.11ac/n), connection status, the current network's SSID, and, importantly, the interface GUID. However, the model name may be abbreviated here.
A more powerful tool is PowerShell. The command Get-NetAdapter will display a list of all adapters with their "Up" or "Down" status. To get the specific device model, use the command:
Get-NetAdapter | Select-Object Name, InterfaceDescription, Status
Here is a column InterfaceDescription often contains the full name of the chipset, which is hidden in the normal interface. If the adapter is disabled, add the parameter -IncludeHiddenIt is also useful to know the MAC address, which can be found using the command ipconfig /all, finding the "Wireless Network" section and the "Physical Address" line.
Sometimes it's useful to save a report to a text file for analysis or sending to a specialist. To do this, add output redirection: netsh wlan show interfaces > wifi_report.txtThe file will appear in the current directory (usually C:\Windows\System32) and will contain the entire technical summary.
The msinfo32 system utility and system summary
Windows has a powerful but rarely used diagnostic tool called System InformationIt aggregates data from all PC components, including those not visible in Task Manager. You can launch it with the command msinfo32 in the Run window (Win + R).
In the left pane of the window, expand the "Components" branch and select "Network." Then, go to the "Adapter" subsection. A list of all network cards will appear on the right. Look for the line where the "Adapter Type" field says "Wireless" or "Wi-Fi." The full model name, driver version, and even the port address are often listed here.
The advantage of this method is that it shows not only the current status but also the driver change history, as well as any conflicting resources (IRQs, memory ranges), if any. This is an indispensable tool when Wi-Fi drops immediately after system boot.
| Parameter | Where to find it in msinfo32 | Why is it needed? |
|---|---|---|
| Adapter name | Components -> Network -> Adapter | Model identification |
| Adapter type | Components -> Network -> Adapter | Definition of technology (Wi-Fi 6, AC) |
| State | Components -> Network -> Adapter | Functionality check (OK/Error) |
| Driver version | Components -> Network -> Adapter | Comparison with the current version on the website |
Data in msinfo32 Drivers are not updated in real time, so if you've just updated a driver, click "Action" -> "Update." This will force the utility to reread the hardware configuration and display the latest data.
Hardware identification programs (AIDA64, HWiNFO)
When built-in Windows tools fail or display anonymous information, specialized utilities come to the rescue. The leader in this field is AIDA64, which can read information directly from the chipset registers, ignoring standard Windows drivers.
After installing the program, go to "Network" -> "Windows Network." Here you'll see detailed information about each network interface, including the actual chip name, its revision, supported speeds, and even temperature (if a sensor is available). A free utility works similarly. HWiNFO, which in the "Network" section will give a complete list of PCIe and USB network devices.
These programs are especially useful for determining antenna specifications and supported safety standards. They will show whether your adapter supports WPA3, whether there is support for 5 GHz or 6 GHz bands (Wi-Fi 6E), and what is the maximum theoretical connection speed.
Why do programs show different names?
Different utilities use different ID databases. One might recognize a device as "Broadcom," while another might recognize it as "AzureWave," even though they contain the same chip. Always refer to the hardware ID (VEN/DEV), not the text name.
Using third-party software also allows you to check the module's health. Some utilities can display the signal level in dBm, the number of packet errors, and the channel load, which helps diagnose connection stability issues.
Physical device analysis and labeling
If software methods fail (for example, the adapter is burned out or not detected by the system), a physical inspection is the only option. For USB adapters, it's simple: remove the cover (if it's removable) or check the sticker. It often contains the FCC ID, which can be used to find the exact model in the Federal Communications Commission database.
Internal laptop modules (Mini PCIe or M.2 form factors) are more difficult to access. This requires opening the laptop's back cover. Locate the small circuit board, approximately 30x50 mm in size, that contains the thin antenna wires (usually black and white). The circuit board itself always has a sticker indicating the model, for example, Intel AX200 or Qualcomm Atheros QCA9377.
It's important to remember whitelist compatibility. Some older HP and Lenovo laptops refuse to boot or block Wi-Fi if they detect a module not on their list of approved vendors. In such cases, the only solution is to find the original model or resolder the EEPROM (a complex procedure).
β οΈ Attention: Before opening the laptop, be sure to disconnect the battery! Even when the laptop is turned off, voltage remains on the board. Careless disconnection of the antenna wires (U.FL connectors) can result in damage, as they are very fragile.
When purchasing a replacement module, pay attention to the pinout keys (Key A+E or Key E). It's physically impossible to insert a module with the wrong key into the M.2 slot without damaging the contacts, but they look very similar.
Decoding VEN and DEV codes to find drivers
Let's go back to the codes received in Device Manager. This is the most reliable method. The code looks like this: PCI\VEN_10EC&DEV_8822. Here 10EC β is the manufacturer code (in this case Realtek), and 8822 β the code of the device itself.
There are online databases where you can enter these numbers. Website PCI-ids.ucw.cz or DeviceHunt They'll instantly tell you what kind of device it is. Knowing the exact chip name, you go to the chip manufacturer's website (Intel, Realtek, MediaTek) and download the driver from there, ignoring the laptop manufacturer's website, where the versions may be outdated.
It's common for the same chip to be used in adapters from different brands (TP-Link, D-Link, Asus). The driver from the "donor" device will often install on the clone if the chip version matches. The key is to be careful not to confuse the hardware revision (Rev 1.0, Rev 2.0), which can also be listed in the device properties.
βοΈ Check before installing the driver
After installing the driver, remember to prevent Windows from automatically updating it through Windows Update if the current version is stable. Newer versions from Microsoft are often older or buggy.
Frequently Asked Questions (FAQ)
Why is my Wi-Fi adapter showing as "Unknown Device"?
This means Windows couldn't find a suitable driver to identify the device. This most often occurs after a system reinstall. Use the VEN/DEV code method described above to find and install the correct driver manually.
Is it possible to find out the model of a Wi-Fi adapter if it is completely burned out?
Software-wise, no. If the device doesn't respond to system requests, software methods are useless. The only options are a physical inspection of the board and reading the markings on the chip or sticker, or finding the model in the laptop/motherboard documentation.
Does the adapter model affect internet speed?
Yes, directly. Older adapters (802.11n) limit speed even with a gigabit plan. Modern standards (Wi-Fi 5/6) and dual-band support (2.4 and 5 GHz) are critical for high speeds. You can find the supported standard in the adapter properties under "Protocol."
Where can I find a driver if the adapter manufacturer no longer exists?
If the manufacturer's website is down, search for the driver by device code (VEN/DEV) on archived driver centers. Chips from obsolete brands (such as Ralink or Atheros) were often manufactured by large factories, and drivers can be found on the Realtek or MediaTek websites.