When experiencing wireless network connection issues or needing to update drivers, the first step is always identifying the installed hardware. Users often encounter situations where the operating system displays the device as a "Standard Wireless Network Module" or simply an "Unknown Device." This significantly complicates searching for the necessary software online, as without the exact model name, it is impossible to find a compatible driver.
There are several proven ways to obtain this information, ranging from simple graphical interfaces of the operating system to deep analysis through system utilities. Knowing the exact equipment ID This prevents the installation of incorrect software versions, which can lead to module instability. In this article, we'll discuss all available methods applicable to most modern and older versions of Windows, as well as discuss alternative diagnostic methods.
Sometimes visually identifying the device model is impossible if the sticker on the device itself has worn off or the computer's internals are inaccessible. In such cases, software methods become the only reliable source of information. We'll look at how to extract maximum information even from a system that refuses to correctly display the device name in the standard menu.
Using Windows Device Manager
The most accessible tool for initial diagnostics is the built-in system component. To open it, right-click the Start button and select the appropriate item from the menu, or use the keyboard shortcut. Win + XIn the window that opens, find the "Network adapters" section and expand its contents.
All network interfaces, including wired and wireless, are displayed here. If the driver is installed correctly, you'll see the full chip name, for example, Intel Dual Band Wireless-AC 8265 or Realtek RTL8822BE 802.11ac PCIe AdapterHowever, if the driver is missing or not working correctly, the device may be marked with a yellow exclamation mark.
If there is no valid name, double-click the unknown device and go to the "Details" tab. In the "Property" drop-down list, select "Hardware ID." This line contains codes VEN (Vendor ID) and DEV (Device ID), which can be used to uniquely identify the manufacturer and model of a device through specialized databases on the Internet.
- 🔍 Click
Win + Rand enterdevmgmt.mscfor quick launch. - 📂 Look for the "Network adapters" section in the hardware list.
- ⚠️ Note: If your device is marked as "Unknown", please check its hardware ID.
- 💻 Write down the VEN and DEV codes to search for drivers on the manufacturer's website.
It's important to understand that in some cases, Windows may not recognize the device at all if it's physically faulty or disabled in the BIOS. Therefore, the absence of an adapter in the list may indicate a deeper issue that requires checking the physical connection of the module to the motherboard.
Getting information via the command line
For a more detailed analysis, which isn't always available in the graphical interface, the command line is ideal. This method allows you to obtain information about the driver status, supported operating modes, and even the MAC address. Launch the terminal as administrator by entering cmd in Windows search.
The main command to get summary information is netsh wlan show driversOnce completed, the system will generate a detailed report, the first lines of which will list the driver name and its vendor. The driver name often includes the chipset model, which is the adapter name you're looking for.
netsh wlan show interfaces
This command will display active interfaces and their descriptions. If a wireless network is active, you'll see the adapter name in the "Description" field. This is one of the quickest ways to find out the model without diving into complex system menus. For those who prefer PowerShell, the equivalent command is Get-NetAdapter | Where-Object {$_.InterfaceDescription -like"Wireless"}, which will filter out only wireless devices.
⚠️ Note: Commands may not return results if the driver is completely missing or the device is disabled at the hardware level. In this case, use the Device Manager.
Using the command line is especially useful for remote administration or when the system's graphical interface is unstable. Text output can easily be copied and saved to a log file for further analysis or sending to technical support.
Analysis via the System Information utility
The Windows operating system has a powerful, yet often overlooked, tool called System Information. It provides a structured list of all installed hardware. To launch it, click Win + R and enter the command msinfo32.
In the window that opens, go to Components → Network → Adapter. A list of all network cards will appear on the right side of the window. Find the line where the "Adapter Type" field says "Wireless" or "Wi-Fi." The full model name, driver version, and even the I/O port address will be listed here.
The advantage of this method is that it displays information even about devices that are temporarily disabled or have no drivers installed (if the system has at least partially identified them). This makes msinfo32 an indispensable tool for deep diagnostics.
- 🚀 Launch the utility through the Run window with the command
msinfo32. - 📂 Go to the "Components" -> "Network" -> "Adapter" branch.
- 📝 Look for lines with the word "Wireless" or "802.11" in the name.
- 📊 Copy the data to search for current software versions.
This tool also allows you to export the report in text format, which is convenient for documentation or sharing data with a specialist. Simply click "File" → "Export" and save the report to disk.
Identification by USB identifiers for external adapters
If you're using an external USB dongle, you can determine its model without even connecting it to your computer, as long as you have access to the documentation or packaging. However, if the device is connected, the system assigns it a unique identifier, which can be found in the USB device's properties.
Go to Device Manager, find "USB Controllers" and look for a device named "Generic USB Hub" or "Unknown Device" when you connect the adapter. The properties of such a device also contain a hardware ID starting with USB\VID_...The VID (Vendor ID) and PID (Product ID) codes are unique keys.
There are specialized online databases, such as Device Hunt or USB-ids, where you can enter these codes to get the exact model name. This is especially true for Chinese OEM adapters, which are often sold under different brands but have the same hardware.
Why is it important to know VID and PID?
The VID and PID codes identify the device at the USB protocol level, regardless of how it appears to the operating system. This is the device's "passport," which cannot be changed programmatically without reflashing the controller.
Knowing the exact model, you can find not only drivers, but also specifications, such as standard support Wi-Fi 6 or the 5 GHz frequency range. Without this, the user may mistakenly believe their adapter supports high speeds, while it is physically limited to the older standard.
Table of popular manufacturers and designations
When searching for drivers, it's important to interpret the names correctly, as manufacturers use different marketing names for the same chips. Below is a table that helps you match adapter series with their manufacturers.
| Chip manufacturer | Example of a name in the system | Adapter series | Peculiarities |
|---|---|---|---|
| Intel | Intel(R) Wi-Fi 6 AX200 | AX, AC, N series | High stability, native Windows support |
| Realtek | Realtek RTL8812AU | RTL88xx, RTL87xx | Popular in USB adapters, require manual driver search |
| MediaTek | MediaTek Wi-Fi 6 MT7921 | MT79xx | Often found in budget and mid-range laptops |
| Broadcom | Broadcom 802.11ac | BCM43xx | Used in Dell, HP, and Apple laptops |
Please note that the same chip may have different names depending on who manufactured the final board (card). For example, an Asus card may have a Realtek chip, but the system will identify it by this chip.
Using this table will help you quickly navigate the sea of technical names and understand the specific equipment you're dealing with. This is especially important when searching for specific utilities for adjusting signal strength or operating modes.
Automatic identification programs
When standard Windows tools fail, specialized snails come to the rescue. Programs like HWiNFO, AIDA64 or PCI-Z are capable of reading information directly from hardware registers, bypassing standard operating system APIs.
The utility is especially useful PCI-Z It's free, requires no installation, and displays detailed information about all devices connected via the PCI Express bus, which includes internal Wi-Fi cards. It immediately displays the Device ID and Vendor ID, as well as a link to search for drivers.
There are also programs for automatic driver updates that scan the system and offer to install the appropriate software. However, they should be used with caution, as they may install incorrect driver versions or unnecessary adware.
- 💡 HWiNFO64 — displays detailed information about all PC components.
- 🔍 PCI-Z is a lightweight utility for identifying PCI devices by codes.
- 🛡️ DriverPack Solution is a powerful tool, but it requires careful attention (beware of unnecessary software).
- 📦 Snappy Driver Installer is a popular open-source alternative.
⚠️ Warning: Download diagnostic programs only from the official websites of the developers. Using questionable builds can lead to system viruses.
☑️ Check before installing the driver
Common problems and their solutions
Even knowing the adapter's name, users may encounter difficulties when trying to activate it. A common problem is a driver version conflict, where the new version performs worse than the old one. In such cases, rolling back the driver through Device Manager helps.
Another issue is power saving. Windows may disable the adapter to save power, which leads to connection interruptions. In the adapter properties, under the "Power Management" tab, uncheck "Allow the computer to turn off this device."
If the adapter is detected but doesn't see any networks, check your regional settings. Some countries allow different channels and signal strengths. You can change the region through the registry or specific driver settings in the advanced menu.
In rare cases, the adapter may freeze at the firmware level. This can be helped by completely powering down the computer (unplugging it from the power outlet for 10-15 seconds), which discharges the residual charge from the capacitors and resets the controllers.
Why is the adapter showing as "Unknown Device"?
This occurs when the operating system lacks a driver capable of correctly interpreting signals from the hardware. Windows sees that something is connected to the bus, but doesn't understand what it is. The solution is to find the driver by hardware ID (VEN/DEV) and install it manually.
Is it possible to find out the model of a Wi-Fi adapter without access to Windows?
Yes, if you are on Linux, use the command lspci for internal cards or lsusb For external devices. In macOS, this information can be found in the system report. The model number is also often written on a sticker on the module itself, if you disassemble the laptop or look at the USB dongle's casing.
Does the adapter name affect internet speed?
The name doesn't directly affect the device, but it does indicate the class of the device. Adapters that support standards 802.11ac (Wi-Fi 5) and 802.11ax (Wi-Fi 6) provides significantly higher speeds and stability than older models of the standard. N.
Where can I download the driver if I don't have internet access?
Use another computer or smartphone to download the driver. Find the official website of the laptop or motherboard manufacturer, download the installation file, and transfer it to the problematic PC via a USB cable or flash drive.