How to find out the exact model of your WiFi module: a complete guide

Many users are familiar with the situation where the operating system identifies a network device only as an "802.11n Network Adapter" or "Wireless LAN Card." This happens because Windows often uses generic Microsoft drivers by default, which provide basic functionality but hide the real hardwareTo install specialized software, configure packet monitoring, or simply find the latest driver from the manufacturer's website, you need to know the exact chip name.

In modern laptops and PCs, the situation is complicated by the fact that manufacturers often change components without warning. The same laptop model may contain a module from Intel, Realtek or Qualcomm Atheros Depending on the batch. Therefore, you can't rely on the case markings or general specifications of a laptop modelβ€”you need to look "under the hood" of the specific system.

In this article, we'll cover all available identification methods, from built-in Windows tools to advanced Linux utilities. You'll learn how to find VEN (Vendor ID) and DEV Device ID codes are unique identifiers for any device connected via a PCI or USB bus. Knowing this information will allow you to accurately select drivers for even the most exotic hardware.

Identification via Windows Device Manager

The most accessible method, which does not require installing additional software, is hidden in the standard system tool. Open device Managerby pressing a key combination Win + X and selecting the appropriate item in the menu, or enter devmgmt.msc In the progress bar, find the "Network adapters" section and expand it.

If the driver is installed correctly, you will see the full name, for example, Intel(R) Dual Band Wireless-AC 8265However, if the standard driver is installed, the name will be truncated. In this case, right-click the device, select "Properties," and go to the "Details" tab. Select "Hardware IDs" from the drop-down list.

Here you will see lines like this PCI\VEN_8086&DEV_24FBNumbers after VEN_ indicate the manufacturer, and then DEV_ β€” the specific device model. This information is key for searching for drivers on third-party resources if official support is no longer available.

⚠️ Caution: When working with drivers in Device Manager, do not attempt to force-install a driver from another device, even if the VEN and DEV codes appear similar. This may lead to resource conflicts and network instability.

Using the Command Prompt and PowerShell

For those who prefer the speed and precision of text commands, built-in Windows utilities provide comprehensive information. The standard command line cmd Allows you to display a list of all network interfaces with their technical specifications. This is especially useful when the graphical interface is running slowly.

A more powerful tool - PowerShellIt allows you to filter output and retrieve data in a structured format. PowerShell commands access WMI (Windows Management Instrumentation) directly, obtaining data about the physical layer of the network.

Enter the following command in Terminal with administrator rights:

Get-NetAdapter | Where-Object {$_.MediaType -eq"802.3"} | Select-Object Name, InterfaceDescription, DriverVersion

This command will filter only Ethernet and Wi-Fi adapters, displaying their descriptions and driver versions. If you need to find out the MAC address and connection status, use the command ipconfig /all, although it provides less detailed information about the chip model.

πŸ“Š Which verification method do you use most often?
device Manager
Command line
Third-party programs
I don't check

Model detection in Linux systems

In a Linux environment, hardware identification is traditionally performed through the terminal. This provides more transparent access to the information provided by the system kernel. The main tool is the utility lspci, which lists all devices connected via the PCI bus.

To get detailed information about the WiFi module, run the command lspci -nn | grep -i network. Key -nn displays the numeric manufacturer and device IDs in parentheses, which is critical for accurate searches. If the module is connected via USB, use the command lsusb.

Another powerful tool is inxi. If it is installed on your system (often a package is required inxi), team inxi -N will show detailed information about network devices, including the kernel driver used and firmware version.

⚠️ Note: In Linux, driver names (e.g. iwlwifi for Intel or ath9k (For Atheros, the kernel module name is often more important than the card's brand name.) The kernel module name is a helpful tool for troubleshooting connection issues.

Below is a table of the correspondence between popular Linux commands and the information they provide:

Team Description of action Output type
lspci -v Detailed information about PCI devices Text log
lsusb List of connected USB devices List of IDs
iwconfig Wireless interface settings WiFi settings
nmcli dev show Information from NetworkManager Structured data

Third-party diagnostic utilities

When built-in tools are insufficient or in-depth analysis is required, specialized programs come to the rescue. CPU-Z, known to most enthusiasts, has a "Mainboard" tab or individual plugins, but for the network, highly specialized tools are better suited.

One of the most informative free snails is HWiNFOWhen launched in "Sensors-only" or "Summary" mode, it scans all buses and displays the exact chip name, stepping revision, and even the module temperature if sensors are supported. It's also worth mentioning AIDA64, which provides, perhaps, information, but is paid.

For quick testing, you can use portable versions of driver packs, such as Snappy Driver Installer OriginWhen scanning the system, they determine the exact device model to select a driver and display this name in the interface before installation.

Why may programs show different names?

Different utilities use different name databases. One might show the marketing name (e.g., Killer Wireless), while another might show the technical name of the chip (e.g., Qualcomm Atheros QCA9377).

Physical marking and opening of the device

If the operating system doesn't detect the device (it's displayed as "Unknown Device" with a yellow exclamation mark), the only solution is a physical inspection. In laptops, the WiFi module is usually a small board. M.2 or Mini PCIe, located under the bottom cover.

The module sticker always indicates the exact model number, for example, AX200NGW for Intel or MT7921 For MediaTek. They may also contain FCC codes, which can be used to find device documentation in the regulator's public databases.

When opening the module, it's important to be careful. The WiFi antennas (the black and white wires leading to the module) are very fragile. The connectors on the module (IPEX or U.FL) can be easily damaged if disconnected carelessly.

β˜‘οΈ Safely open your laptop

Completed: 0 / 4

Driver problems and solutions

A common issue is missing drivers after reinstalling Windows. If you don't have WiFi access, use your smartphone as a USB modem or download the driver on another PC. It is critically important to download the driver specifically for your board revision, as laptop manufacturers may use different modules in the same model.

Sometimes, removing the device from Device Manager by checking "Delete driver software" and then rebooting helps. The system will try to find suitable software in its database or through Windows Update.

In cases where standard methods do not work, you can try compatibility mode when installing the driver or manually specify the path to the INF file through the driver update interface.

Frequently Asked Questions (FAQ)

Can the WiFi module model change after a BIOS update?

The physical model itself may not change, but a BIOS or firmware update can change how the device appears to the system. Sometimes, after an update, the marketing name disappears, leaving only the technical name, or vice versa.

What to do if VEN and DEV codes are not in the database?

This is a rare occurrence, and may only occur with very new or exotic hardware. Try searching for the manufacturer code (VEN) on the vendor's website or using a Linux utility. pci.ids, updating its database.

Does the module model affect internet speed?

Yes, directly. Older 802.11n modules won't deliver the speeds available on plans above 100-150 Mbps, even if the router supports Wi-Fi 6. For higher speeds, a module supporting 5 GHz and the AC or AX standard is required.

How do I know if my module supports Bluetooth?

WiFi and Bluetooth are often combined into a single module in laptops. If the Device Manager has a Bluetooth section and it's working, it's likely a combined module. For more information, check the chip model specifications on the manufacturer's website.