How to View a WiFi Adapter's Chip: A Complete Guide

A situation where a wireless connection is unstable or a driver stops responding often requires a deep dive into the hardware specifications. Knowing the exact model chipset It allows you to find specific patches, roll back software to a working version, or even replace a module with a compatible one. Without this information, finding a solution becomes a matter of guesswork, especially given the diversity of OEMs.

Often, laptop or USB dongle manufacturers use the same marketing model for dozens of different hardware revisions. Inside the case, there may be a module from Realtek, and in the next game - from MediaTek or IntelThis is why standard methods for viewing device properties in the control panel sometimes provide only general information about the manufacturer, obscuring the actual controller's markings.

In this article, we'll explore all available identification methods, from built-in operating system tools to specialized software. You'll learn how to read Hardware ID, analyze system logs, and use third-party utilities to obtain comprehensive data about your network card.

Using Windows Device Manager

The most accessible method, which doesn't require installing additional software, is found in the standard system tool. However, most users limit themselves to the "General" tab, where they rarely find a specific chip model. We'll need to go to the "Settings" tab. Intelligenceto access technical identifiers.

To begin, open Device Manager by typing it into the search bar or using a keyboard shortcut. Find the "Network Adapters" section and expand it. Select your WiFi adapter, right-click, and select "Properties." In the window that opens, find the "Property" drop-down list and select Equipment ID.

The "Value" field will display a line of code containing key information. Look for lines that begin with PCI\VEN_ or USB\VID_Numbers after VEN_ (Vendor ID) indicates the manufacturer, and then DEV_ (Device ID) - for a specific device. Knowing these codes, you can accurately determine chipset even if the driver is not installed correctly and the device name is displayed as "Unknown device".

⚠️ Attention: If "Hardware ID" isn't listed in the properties list, make sure you have administrator rights. On corporate networks, access to this data may be restricted by group security policies.

The resulting codes can be entered into a search engine to instantly find the exact controller model. This is especially true for cheap USB adapters, which often simply say "WiFi 802.11n" on the casing, revealing nothing about the internal components.

Analysis via the command line and PowerShell

For those who prefer the speed and precision of text commands, Windows' built-in console utilities provide powerful tools. The command line allows you to extract hidden data that the graphical interface might ignore or display in a truncated form.

Launch Command Prompt (CMD) or PowerShell as administrator. Enter the command netsh wlan show driversIn the system response, look for the "Manufacturer" and "Description" lines. While this often lists the adapter brand, in some cases, especially with Microsoft drivers, information about the underlying chipset may be present.

A more in-depth analysis is possible via PowerShell using WMI queries. This command displays detailed information about network interfaces, including the PNP Device ID, which is similar to the hardware ID from Device Manager but in a more readable format for scripts.

Get-WmiObject Win32_NetworkAdapter | Where-Object {$_.NetEnabled -eq $true} | Select-Object Name, Manufacturer, PNPDeviceID

Using PowerShell is especially effective for remote diagnostics or when you need to quickly gather data from multiple machines. The command output PNPDeviceID will take you back to the VEN and DEV codes, which are the “passport” of your hardware.

What do the VEN and DEV codes mean?

VEN (Vendor ID) is a unique manufacturer identifier assigned by the PCI-SIG organization. DEV (Device ID) is a unique number for a specific device from that manufacturer. The combination of these two codes guarantees the uniqueness of the equipment worldwide.

Specialized diagnostic utilities

If built-in Windows tools seem too complex or provide incomplete information, third-party programs can help. They can read SMART data, ACPI tables, and directly query chipset registers, providing the user with a ready-made model name without having to decipher hex codes.

One of the most popular and free snails is AIDA64 (formerly Everest). You can find detailed information in the "Network" -> "Windows Network" -> "Adapters" section. The program will show not only the chip name, but also its revision, connection speed, and even the temperature, if the sensor is supported.

Another powerful tool is HWiNFOAt startup, select "Sensors only" or "Summary" mode and locate the PCI/PCIe Devices section. The exact device ID and name will be listed there. For USB adapters, information is located in the USB Devices section.

The advantage of such programs is their ability to work even with partially malfunctioning drivers, accessing the hardware at a low level. This makes them indispensable for system administration and diagnostics complex cases.

📊 Which method of chip identification is best for you?
Via Device Manager (manual)
Via the command line
Using third-party programs (AIDA/HWiNFO)
I don't need to know this, let it work on its own

Determining the chipset on Linux systems

Linux users often need to find proprietary drivers or firmware for their WiFi adapters. Unlike Windows, diagnostic tools are built into the system's design and are accessible via the terminal by default.

The easiest and most informative way is to use the utility lspci for internal cards or lsusb for external. Team lspci -nn | grep -i network will output a list of network devices with their Vendor ID and Device ID in square brackets. For example, the line might look like this: Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:8821] (rev 01).

For even more detailed information, including the kernel driver in use, you can use the command lshwIt requires superuser rights.

sudo lshw -C network

The output of this command will show the logical interface name (e.g., wlan0), product description, vendor, and kernel version. If the driver is not loaded, the "configuration" field will be empty or contain the status UNCLAIMED, which will immediately indicate a problem with the software.

Physical identification and marking

When software methods are unavailable (for example, the system won't boot or the device isn't detected at all), the only reliable method is physical inspection. This applies to M.2 cards in laptops or PCIe cards in desktops.

To access the device's internals, you'll need to carefully remove the back cover of your laptop or open your PC case. Locate the WiFi module: it's usually a small, coin-sized board (M.2 2230 or Mini PCIe form factor) with thin antenna wires (black and white) connected to it.

The board itself, on black PCB, has markings. The module manufacturer is usually indicated in large font (for example, Intel, Qualcomm Atheros), and in small print is the chip's markings. It is the chip's markings (for example, AR9285 or RTL8821AE) is the ultimate truth.

⚠️ Attention: Before opening the laptop case, be sure to disconnect the battery! A short circuit on the motherboard with the battery connected can cause irreversible damage to the power controller.

If you have a USB adapter, you'll need to open it by removing the screws or carefully prying the case with a knife. Inside, you'll see a circuit board with a chip laser-etched with the model number. Adapter manufacturers often use re-marked chips, but the original markings from the chipset manufacturer (e.g., MediaTek) usually remains readable.

Table of popular Vendor IDs and manufacturers

To save you from having to Google hex codes every time, we've prepared a reference table with the most common network device manufacturer identifiers. Save it or keep it handy for troubleshooting.

Code (Hex) Manufacturer (Vendor) Popular chip series Typical application
8086 Intel Corporation AX200, 7260, 8265 Laptops, PCIe cards
10EC Realtek Semiconductor RTL8822, RTL8192 USB whistles, budget laptops
14E4 Broadcom Inc. BCM43xx Apple MacBook, routers
168C Qualcomm Atheros AR9xxx, QCA6174 Game consoles, routers
1432 MediaTek (Ralink) MT76xx Cheap USB adapters, IoT

Knowing the manufacturer by code, you can narrow down the search for drivers. For example, for the code 10EC It makes sense to look for drivers on the Realtek website or check compatibility with drivers from RTL.

☑️ Checklist before buying a new adapter

Completed: 0 / 4

Common problems and their solutions

Even knowing the chip model, users often encounter difficulties. One of the most common is a driver version conflict. Windows Update may automatically install a generic driver that is unstable. In this case, knowing the exact model allows you to download the original software from the laptop or chip manufacturer's website.

Another problem is the adapter "disappearing." If the device has disappeared from Device Manager, check your power settings. In the device properties, on the "Power Management" tab, uncheck "Allow the computer to turn off this device to save power."

It's also worth mentioning the bottleneck issue. If you have a powerful router with support WiFi 6If your laptop's adapter is old (e.g., N-standard), you won't get high speeds. Replacing the module with a modern one (e.g., Intel AX200) often solves the low speed issue even without replacing the router.

⚠️ Attention: Driver interfaces and settings menus may vary depending on the operating system version and specific hardware manufacturer. Always check the steps with the official documentation for your device model.

FAQ: Frequently Asked Questions

Is it possible to update the WiFi chip via software?

No, a chip is physical hardware. Only its firmware or drivers can be updated via software, but it's impossible to upgrade an old chip to a new one. If support for new standards is required, the module must be replaced.

Why does Device Manager say "Unknown device"?

This means the operating system sees the connection but doesn't have a driver to identify the device. Using the hardware ID in this case is the only way to understand what's connected and find the right driver.

Does the chipset affect internet speed?

Yes, directly. Different chipsets support different standards (802.11n, ac, ax), number of MIMO streams, and channel width. An older chip physically won't be able to deliver speeds higher than its technical limit, regardless of the provider's plan.

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

Identify the chipset using the hardware ID. Then go to the official website of the chip manufacturer (Intel, Realtek, Qualcomm) and search for the driver there by chip model, ignoring the laptop brand. This often results in more recent software.