How to accurately determine the chip model of a WiFi adapter

Problems connecting to a wireless network often arise precisely because of the lack of the correct driver, and finding one without knowing the exact controller model is almost impossible. Unlike video cards or processors, network card manufacturers rarely provide a complete part number The chip's name appears on the device's external label or in the standard task manager. Users often see generic names like "Wireless LAN Adapter" or "802.11ac," which provide no information for searching for the software.

The situation is complicated by the fact that the same adapter model in different revisions can be equipped with completely different chips from Realtek, MediaTek, or Intel. This is why it's important to be able to identify not just the device name in the system, but the actual chip. Vendor ID And Device ID, which are embedded in the chip itself. This data serves as a unique digital fingerprint, allowing for unmistakable hardware identification.

In this guide, we'll explore software and hardware methods for obtaining this information, using built-in operating system tools and specialized utilities. You'll learn how to read technical specifications and understand why knowing the chip model is critical for stable network operation in 2026.

Analysis via Device Manager in Windows

The most accessible way to obtain basic information about network equipment is through the standard Windows operating system interface. However, the standard display often obscures details, so it's necessary to delve deeper into the properties of a specific device. Control Panel and go to the section device Manager, or use the key combination Win + R and enter the command devmgmt.msc.

In the window that opens, find the branch Network adapters and expand it. All detected network interfaces will be listed here. Double-click your wireless adapter (usually it has "Wireless," "WiFi," or "802.11" in its name). Go to the tab. Intelligence, which contains technical information about the selected object.

In the "Property" drop-down list, find the item Equipment ID or Hardware IDsYou will see lines like this PCI\VEN_8086&DEV_3165&SUBSYS_90108086&REV_61. Here VEN denotes the manufacturer (Vendor), and DEV — a specific device (Device). Knowing these codes, you can accurately identify the chip, even if the driver is not installed and the device is displayed as "Unknown."

📊 Which model detection method do you use most often?
Windows Device Manager
Command Prompt (CMD)
Third-party utilities
I look at the board itself

Please note that sometimes the list may contain multiple lines of codes. The system attempts to match a driver starting with the most specific line (the top one) and moving on to more general lines. When searching for a driver or identifying a model, it's best to use the top line, as it contains the most complete revision information.

Using the Command Prompt and PowerShell

For those who prefer the speed and precision of text commands, the command line interface offers powerful diagnostic tools. While the graphical interface may hide some details or require lengthy menu navigation, the console provides raw data directly from the system. This is especially useful if the graphical interface is unstable.

Launch the command prompt (cmd) or PowerShell as administrator. Enter the command netsh wlan show driversThis command will output a detailed report about the current wireless driver, including the manufacturer name, driver version, and, most importantly, often the exact chip model in the "Description" or "Driver description" line.

If the standard command does not produce results, you can use a more powerful tool wmic. Enter the following command:

wmic path win32_pnpentity where "PNPDeviceID like '%PCI%'" get name, deviceid, manufacturer

This query will filter devices and show only those connected via the PCI bus, which is where most internal WiFi modules are located. The output can be voluminous, so carefully look for lines containing the words "Wireless," "WiFi," or well-known brands like Intel or Qualcomm.

What to do if the wmic command returns no results?

If the command returns no data, the Windows Management Instrumentation service may be disabled or corrupted. Try restarting the WMI service or using PowerShell with the Get-NetAdapter command.

It is also worth mentioning PowerShell, which in modern versions of Windows (10 and 11) is the main administration tool. Command Get-NetAdapter will show a list of adapters, but for more details it is better to use Get-PnpDevice Filtered by Net class, this will return a list of all network devices with their statuses and IDs.

Chip detection in Linux operating system

In the Linux world, hardware detection is traditionally done through the terminal, where low-level utilities are available that read data directly from the kernel. This is often even more efficient than in Windows, as the Linux kernel contains extensive hardware databases. First, use the command lspci for internal cards or lsusb for external USB adapters.

Team lspci -nn will display a list of all PCI devices with their numeric IDs in square brackets. Look for a line containing "Network controller" or "Wireless." Numbers in brackets, for example [8086:3165], and there are those very ones Vendor ID And Device IDThe first part (8086) indicates Intel, the second one indicates a specific model.

For USB adapters, use the command:

lsusb -v | grep -i wireless

However, the most complete information, including the name of the driver the kernel is trying to load and the firmware status, is provided by the command lshwRun it with superuser rights:

sudo lshw -C network

In the output of this command, look for the block *-networkThere will be a field there. product (chip model), vendor (manufacturer) and configuration, where the driver used is specified (for example, driver=iwlwifi for Intel or driver=rtl8821ce for Realtek).

If the system does not see the device at all, check the output dmesg | grep firmwareThis will show whether the kernel is attempting to load firmware for your adapter and whether any errors are encountered. Often, a lack of WiFi is caused by missing firmware, not faulty hardware.

Specialized diagnostic utilities

When built-in tools aren't sufficient or the system can't correctly identify a device (for example, displaying it as "Unknown Device"), third-party programs come to the rescue. These utilities have their own identifier databases, allowing you to immediately obtain a human-readable model name rather than just a string of numbers.

One of the most popular and lightweight programs is HWiNFO or AIDA64In the "Network" or "PCI Devices" sections, they detail all the adapter parameters. However, for a quick check, you can use a specialized tool. PCI Database or online services where you can enter the equipment ID.

  • 📡 HWiNFO — provides comprehensive information about all PC components, including WiFi chip temperature and current connection speed.
  • 💻 Device Manager Plus — an alternative to the standard device manager with the ability to export reports and search for drivers by ID.
  • 🔍 Unknown Device Identifier — a utility designed specifically to search for unknown devices by their vendor and device codes.
⚠️ Attention: Download diagnostic tools only from the official websites of their developers. "Automatic driver search" programs from dubious manufacturers often contain adware or install incorrect driver versions.

There is also a utility CPU-Z, which, despite its name, has a "Mainboard" tab and sometimes displays information about the built-in network controllers, although this is not its primary function. For in-depth analysis, it's better to use Everest (now AIDA64), which can detect even disabled or hidden devices.

☑️ Check before installing the driver

Completed: 0 / 4

Physical identification and disassembly of the device

If the operating system doesn't detect the adapter at all (for example, after an unsuccessful BIOS update or if it's completely inoperable), physical inspection is the only option. This method requires opening the laptop case or system unit, so follow safety precautions and disconnect the power before beginning.

Most modern laptops use modules of this format. M.2 (formerly Mini PCIe). The module board is always marked. Look for the chip manufacturer's logos: Intel, Qualcomm Atheros, Broadcom, RealtekThe model is usually indicated next to the logo or on a sticker.

USB adapters are more difficult to identify, as they're often encapsulated or mounted on a tiny, unmarked board. You'll need to carefully open the housing (often held in place by latches) and look for the markings on the black chip itself. This can be challenging due to the small font size.

Manufacturer Typical markings Where to look
Intel Intel AX200, 8265NGW Large logo on a metal screen
Realtek RTL8821AE, RTL8723BE Black square chip with inscription
Qualcomm QCA6174, QCA9377 A chip with a Q or Atheros logo
MediaTek MT7921, MT7612 A chip with the MediaTek logo

When disassembling, it's important not to damage the antenna wires, which are connected to the module via tiny coaxial connectors (IPEX connectors). They are very fragile and require careful handling. Before disconnecting, take a photo of the wire arrangement, as it's easy to confuse the black and white connectors.Main And Aux) quite easily.

Interpreting vendor and device codes

After you have received the codes VEN And DEV, you need to learn how to "read" them. These hexadecimal codes are the PCI industry standard. The first 4 digits after VEN_ indicate the developer company, and the 4 characters after DEV_ — for a specific product.

For example, code VEN_10EC always belongs to the company Realtek. Code VEN_8086 reserved for IntelKnowing these prefixes can help you narrow down your driver search. The full list of vendor IDs (PCI ID Repository) is publicly available and maintained by the community.

⚠️ Attention: Sub-IDs may vary between laptop manufacturers (OEMs). A Dell driver for an Intel chip may not work for an HP laptop, even if the chips are identical. Always check compatibility.

There are online databases where you can enter these codes. However, if you don't have internet access because you don't have the driver, use your smartphone. Search for "PCI VEN_XXXX DEV_YYYY," and the first results will usually lead to forums or driver databases that will list the exact model.

Why might codes change?

Manufacturers can change the internal layout of a device while leaving the external casing unchanged. Therefore, the same laptop model may contain different WiFi modules.

Frequently Asked Questions (FAQ)

Is it possible to update WiFi drivers without internet?

Yes, this is possible. You'll need another device (smartphone or another PC) to download the driver. Determine the chip model using Device Manager (copy the hardware ID), download the installation file to a flash drive or transfer it via USB cable, then install it manually using "Update driver" -> "Select from list" -> "Have disk."

What should I do if my device has the "Code 43" or "Code 10" status?

These error codes in Device Manager indicate a resource conflict or hardware failure. Try completely removing the device from the device manager (right-click -> Uninstall device), then restart your computer. If the error recurs, the issue may be with the physical contact of the module or its failure.

Does the chip model affect WiFi speed?

Absolutely. Chips of different generations support different standards (802.11n, ac, ax). For example, the chip Realtek RTL8821AE supports only one antenna (1x1), which limits the speed, while Intel AX200 Supports Wi-Fi 6 and two antennas (2x2), providing significantly higher throughput and stability.

Where can I find a driver if the laptop manufacturer no longer supports the model?

If there are no drivers available on the laptop manufacturer's website, go to the website of the chip manufacturer (Intel, Realtek, MediaTek). Use the model number determined by the hardware ID. Drivers from the chip manufacturer are often more stable than OEM versions from laptop manufacturers.