Modern operating systems often hide detailed technical information from the user, providing only general device names. Owners of laptops and desktop PCs running Windows 10 We often encounter situations where we need to find drivers, check compatibility with new routers, or diagnose connection stability issues. However, without precise knowledge of the hardware revision and chip manufacturer, this is virtually impossible. The system may display the device as a "Wireless Network Adapter" or "802.11ac Wireless LAN," which provides no insight into the actual hardware inside.
The problem is compounded by the fact that laptop manufacturers often install modules from different suppliers into the same laptop model, depending on the batch. Therefore, searching for a driver by laptop model (e.g., "HP Pavilion 15") often results in installing the wrong software version, which may not work or cause errors. The exact chip model (eg Intel AX200 or Realtek RTL8822BE) is the only reliable key to finding the right software and diagnosing network problems.
In this guide, we'll cover all available methods for identifying a wireless module, from standard operating system tools to advanced command-line utilities. We'll look at how to obtain information even if the driver isn't installed or the device isn't working properly. Understanding which one chipset installed on your system is critical for Wi-Fi enthusiasts and everyday users who encounter problems.
Using Device Manager to Identify
The most obvious and accessible way to identify hardware is the built-in system tool, Device Manager. It provides basic information about all connected components. To access it, right-click the Start button and select the appropriate item from the context menu, or use a keyboard shortcut. Win + X and select "Device Manager." In the window that opens, find the "Network Adapters" section and expand it.
Here you'll see a list of all network interfaces. Typically, a wireless adapter will have "Wireless," "WiFi," or "802.11" in its name. However, as mentioned earlier, the name may be generic. For more detailed information, double-click the device or right-click and select "Properties." Go to the "Details" tab. From the "Property" drop-down list, select "Hardware IDs" or "Compatible IDs."
The values displayed in the Value field are unique codes. VEN (Vendor ID - manufacturer identifier) and DEV (Device ID - device identifier). For example, the string might look like this PCI\VEN_8086&DEV_2723Code 8086 belongs to Intel, and 2723 is specific to a specific module. Knowing these codes allows you to accurately identify the model even if drivers are missing and the device is displayed as "Unknown Device."
⚠️ Note: If you see an "Unknown Device" with a yellow exclamation point in the list, this almost always means that the driver for your WiFi adapter is missing. In this case, identifying the model using the hardware ID (VEN/DEV) is the only way to find the necessary software.
Getting information via the command line and PowerShell
For users who prefer a text-based interface or need quick diagnostics, the Windows command line offers powerful tools. netsh Allows you to display comprehensive information about the status of your wireless network and adapter. Open the command prompt (cmd) as administrator and enter the command: netsh wlan show interfacesIn the output, look for the "Description" line, which often contains the full device model.
More detailed technical information can be obtained using PowerShell. This method is particularly useful because it accesses WMI (Windows Management Instrumentation) directly, bypassing some interface abstraction layers. Launch PowerShell and enter the following command:
Get-NetAdapter | Where-Object {$_.Status -eq "Up"} | Select-Object Name, InterfaceDescription, DriverVersion
This command will filter only active network adapters and display their descriptions, which usually contain the exact chip model. If the adapter is disabled programmatically, add the parameter -IncludeHidden to the request. The command may also be useful Get-PnpDevice -Class Net, which will show all network devices connected to the system, including those that are temporarily disconnected.
☑️ Check adapter status
Analyzing information through the Windows registry
The Windows registry stores hardware configuration in a hierarchical key structure. While editing the registry requires caution, reading its information is safe and can provide information not accessible through the graphical interface. To access the registry, click Win + R, enter regedit and press Enter. Navigation is carried out along the following path:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}
This GUID ({4d36e972..}) is the network adapter class identifier. Within this branch, you'll see numerous subfolders with names like "0000," "0001," "0002," and so on. You need to navigate through them until you find the parameter in the right side of the window. DriverDesc, the value of which corresponds to your wireless adapter. You can often find parameters inside this same folder. HardwareID or MatchingDeviceId, which duplicate the information from the device manager, but in a more readable form.
Sometimes, especially on laptops with hybrid graphics systems or complex power-saving configurations, additional registry parameters can be found that indicate the antenna module version or regional restrictions set by the OEM. This can be useful when attempting to unlock additional WiFi channels.
Using specialized utilities
If standard Windows tools don't provide a complete picture or you want the most detailed technical specifications, it's worth turning to third-party software. Utilities like CPU-Z, AIDA64 or HWiNFO are able to read data directly from the device controller, ignoring possible errors in the display of Windows drivers.
For example, in the program CPU-Z (starting with version 1.90) a tab "Mainboard" -> "Network" appeared, where the network controller model is displayed. Program AIDA64 Provides an even deeper analysis, showing not only the model, but also the current connection speed, signal strength, supported security standards, and even the chip temperature (if a sensor is available). Free utility Device Manager Plus It also does a great job of providing a convenient table of all devices with the ability to export reports.
Why do third-party utilities see more?
Windows system tools often rely on data provided by the driver. If the driver is buggy or generic (Microsoft Basic), the information will be truncated. Specialized utilities use low-level queries to the PCI/PCIe bus, obtaining raw data directly from the hardware, regardless of the driver's state.
Physical inspection of the module inside the laptop
In cases where software methods fail (for example, in the case of a "blue screen of death" or complete system failure), the only reliable method is a physical inspection. In most modern laptops, the WiFi module is a small PCB. M.2 or Mini PCIe, which is attached to the motherboard. To access it, you'll need to remove the laptop's bottom cover.
The module's sticker always indicates the exact model, serial number, and MAC address. Popular models, such as Intel Dual Band Wireless-AC 8265 or Qualcomm Atheros QCA6174, have standard dimensions and contact arrangement.
| Interface type | Form factor | Characteristic models | Where it is applied |
|---|---|---|---|
| PCI Express | M.2 2230 | Intel AX200, AX210 | Modern laptops (2019+) |
| PCI Express | Mini PCIe | Intel 7260, Atheros AR9xxx | Laptops before 2015 |
| USB | Internal USB | Realtek RTL8723 | Budget models, tablets |
| PCI Express | CNVi (M.2) | Intel 9560, 9462 | Intel 8th-10th generation laptops |
⚠️ Caution: Before opening the laptop case, be sure to disconnect the battery! Even if the laptop is powered off, voltage may remain on the motherboard. Also, keep in mind that opening the laptop yourself may void the manufacturer's warranty.
Interpretation of the obtained data and selection of drivers
Once you've identified your adapter model, you're faced with the task of finding the right driver. It's important not to get confused by the different versions. Drivers come in two main types: those from the OEM (Dell, Lenovo, HP) and those from the chipset manufacturer (Intel, Realtek, Broadcom). Drivers from the laptop manufacturer are often limited or outdated, as they undergo additional certification.
It's recommended to always search for drivers on the chip manufacturer's official website. For example, there's a utility for Intel adapters. Intel Driver & Support Assistant, which automatically finds and installs the latest software version. For Realtek, the situation is more complicated, as the company doesn't have a single, convenient download center for end users, and drivers often have to be searched for on trusted manufacturer websites or through the Windows update catalog.
When installing, make sure you download the version that matches the bit depth of your system (x64 for 64-bit Windows 10). A bit depth mismatch is a common error that can prevent installation. Also, pay attention to the Windows build version (e.g., 21H2, 22H2), although this is less critical for WiFi drivers than for system updates.
Frequently Asked Questions (FAQ)
Is it possible to find out the model of a WiFi adapter if the drivers are not installed?
Yes, this is possible. Use Device Manager, find the "Unknown Device," and go to Properties -> Details -> Hardware IDs. The VEN and DEV codes will help you identify the manufacturer and model using search engines.
Why does Device Manager say "Microsoft Wi-Fi Direct Virtual Adapter"?
This isn't your physical adapter, but a virtual interface created by Windows 10 for internet sharing (mobile hotspot) or connecting to projectors. Your actual adapter is listed above or below.
How do I know if my adapter supports Wi-Fi 6 (802.11ax)?
Look at the model name. If it includes "AX" (for example, Intel AX200) or "Wi-Fi 6," then it supports Wi-Fi 6. You can also check this in PowerShell with the command (Get-NetAdapter -Name "WiFi").InterfaceDescription and check the model against the specification table.
Does the adapter model affect internet speed?
Yes, directly. Older adapters (N-standard) physically cannot exceed speeds of 150-300 Mbps, even if your provider's plan allows for higher speeds. For gigabit speeds over the air, you need an adapter that supports AC (Wi-Fi 5) or AX (Wi-Fi 6) and a 2x2 antenna configuration or higher.