When faced with unstable wireless network performance or the need to install specific drivers, users often wonder how to identify their WiFi adapter's chip. Standard operating system tools don't always display this information directly, hiding it behind a generic device name or the manufacturer's marketing name. Understanding the specific controller installed in your PC or laptop is critical for selecting compatible software and resolving hardware conflicts.
There are several proven methods of identification gland, from viewing system properties to using specialized command-line utilities. In this article, we'll examine each method in detail, highlighting the nuances that may arise when working with different Windows versions and Linux distributions. Obtaining accurate vendor and device ID information is the first step to resolving connection issues.
Using Device Manager in Windows
The most accessible way to obtain basic information about network equipment is the built-in device management tool. However, the default display often only shows a generic name, such as "802.11n Wireless LAN Card," which is of little use to an experienced user. To see more detailed data, go to the properties of a specific adapter and open the "Details" tab.
In the drop-down list of parameters, select the "Hardware IDs" line. This is where the key information required for accurate identification is hidden. You will see lines of the following format: VEN_XXXX&DEV_YYYY, where XXXX is the manufacturer's ID and YYYY is the device ID. These codes are unique for each chipset type.
- 🔍 VEN (Vendor ID) - indicates the company that developed the chip, for example, Realtek, Intel or Atheros.
- 📟 DEV (Device ID) is a specific controller model code that allows you to distinguish one revision from another.
- ⚙️ SUBSYS — a subsystem identifier, often indicating the manufacturer of the adapter itself (for example, TP-Link or D-Link), and not the chip.
- 🔗 REV — device revision, which can be important when searching for specific drivers.
The obtained codes can be entered into a search engine or specialized PCI ID databases to determine the exact chip model. This method is especially useful when the driver is not installed and the device is displayed as "Unknown Device."
⚠️ Note: If a yellow exclamation point appears in Device Manager instead of the adapter's name, the system cannot correctly identify the device without a driver. In this case, the hardware ID method is the only viable identification option.
Defining a model via the command line
For those who prefer a text-based interface or need quick diagnostics without navigating through menus, the Windows command line offers powerful tools. Using the utility netsh Allows you to display a detailed report on the wireless network status, including driver and hardware information. This method often produces more readable results than the Device Manager.
To obtain the data, you must run the command prompt as administrator. Enter the command netsh wlan show drivers and press Enter. In the window that opens, find the "Manufacturer" and "Description" lines. This often includes not only the adapter brand but also the specific chipset series.
netsh wlan show drivers
An alternative option is to use the command wmic, which allows you to request information directly from the system registry. Entering the command wmic nic where "NetEnabled=true" get name, manufacturer, pnpdeviceid will display a list of active network cards with their manufacturers and full device paths. This is especially useful if you have multiple network interfaces.
The advantage of this method is the ability to quickly copy data to the clipboard or save it to a text file for later analysis. Furthermore, the command line works even in the recovery environment, when the Windows graphical interface is unavailable.
What to do if commands are not executed?
On some enterprise builds of Windows or limited versions of the system, access to the command prompt or wmic utility may be restricted by group policies. In this case, use PowerShell with the Get-NetAdapter command.
Use of specialized software
When built-in tools are insufficient or the most comprehensive information about the chip's characteristics is required, third-party diagnostic tools come to the rescue. System diagnostic programs collect data from all computer components, providing detailed information about PCI bus, firmware version and supported communication standards.
One of the most popular and free utilities is HWiNFO or AIDA64After starting the scan, go to the "Network" section. This will list not only the logical adapter, but also the physical device with the chipset name, for example, Realtek RTL8822BE or Intel Wi-Fi 6 AX200.
- 📊 Detailing — display of the process technology, voltage and temperature of the chip (if supported).
- 📅 Driver date — precise information about the version of installed software and its release date.
- 🌐 Standards support — list of supported protocols (802.11ac, ax) and frequency ranges.
- 🔌 Connection interface - Indicates whether the PCIe bus, USB, or integrated into the motherboard is used.
Using this software also allows you to see related devices, such as the Bluetooth module, which is often soldered on the same board as the WiFi adapter. This helps in comprehensively diagnosing problems with wireless interfaces.
⚠️ Important: Download diagnostic tools only from the official websites of the developers. Driver aggregator programs often contain adware or may install incorrect driver versions, which will worsen the problem.
Chip identification in Linux operating system
Linux users are at an advantage, as the OS kernel and system utilities are designed for detailed hardware analysis. Determining the WiFi adapter model requires no additional software. The primary tool is a command-line utility. lspci for internal cards or lsusb for external USB whistles.
Executing a command lspci -nn | grep -i network will list all network devices connected via the PCI Express bus. The Vendor ID and Device ID will be shown in square brackets. If the adapter is connected via a USB interface, the command lsusb will show similar information for USB devices.
lspci -nn | grep -i network
Even more detailed information can be obtained using the utility inxi, if it is installed in the distribution Command inxi -N will display a brief report about the network, and inxi -Nxxx will show extended data, including the chipset name and the kernel driver used (e.g. iwlwifi or ath9k). This is critical to understanding whether a device runs on a free driver or requires proprietary "blobs".
Many distributions, such as Ubuntu or Mint, also have a "System Information" section in their graphical interfaces, where you can often find the name of your WiFi controller under the "Devices" category without using a terminal.
Table of popular vendors and their designations
When searching for equipment ID information, it's important to understand which codes correspond to the most common manufacturers. Knowing the main prefixes allows you to quickly filter out unnecessary information and understand the specific "beast" you're dealing with. Below is a table of vendor codes corresponding to their names.
| Code (VEN) | Manufacturer | Popular chip series | Driver Features |
|---|---|---|---|
| 8086 | Intel | Wi-Fi 6 AX200, 7260, 9260 | Excellent support on Linux (iwlwifi), stable on Windows |
| 10EC | Realtek | RTL8812, RTL8723, RTL8188 | Often require manual installation of drivers in Linux, cheap solutions |
| 168C | Atheros / Qualcomm | AR9271, QCA9377 | Good compatibility, often used in OpenWrt routers |
| 14E4 | Broadcom | BCM43xx | Complex proprietary drivers, may have issues with open source software |
| 1A32 | MediaTek / Ralink | MT7921, RT5370 | Budget segment, support varies depending on the model |
Having this table at hand greatly simplifies the process of deciphering the equipment ID. For example, seeing the code VEN_10EC, you immediately understand that you are dealing with Realtek products, and you can specifically search for drivers on this manufacturer's website.
It's worth noting that some companies may change the labeling or use third-party chips under their own brand. Therefore, ID verification is a more reliable method than relying on labels on the box or in the Device Manager.
Physical inspection and markings on the board
If software methods fail, for example, if the adapter is completely nonfunctional or the system drivers are missing, the only reliable option is a physical inspection. This requires disassembling the laptop or removing the PCIe card from the system unit. The main chip is always marked on the WiFi module's printed circuit board.
This is usually a black square element with the manufacturer's logo and a series of numbers. The information you're looking for is located on this chip, not on the smaller components surrounding it. In laptops, modules often have the M.2 (NGFF) or Mini PCIe form factor and look like small rectangular boards measuring approximately 12 x 30 mm.
- 🔎 Purity — Before inspection, carefully wipe the chip from dust to read the markings.
- 📷 Photographic documentation - Take a close-up photo of the board to make it easier to search for information from the photo.
- ⚡ Statics — Before touching components, be sure to discharge static electricity by touching a grounded metal object.
- 🔌 Antennas - When removing the module, carefully disconnect the thin antenna wires (usually black and white connectors).
This method also allows you to visually assess the condition of the device: the presence of chips, signs of overheating, or bulging capacitors may indicate a physical malfunction that cannot be corrected by software.
⚠️ Warning: Opening the laptop case or system unit may void the warranty. If the device is under warranty, limit yourself to software diagnostics or contact an authorized service center.
☑️ Action plan for finding a driver
Frequently Asked Questions (FAQ)
Can antivirus software block WiFi adapter detection?
Antivirus software itself rarely hides a device from the system, but it can block driver installation or diagnostic utilities if it deems them suspicious. Some corporate security policies may also restrict access to hardware information.
Why does Device Manager show "Unknown Device"?
This means that the operating system sees the physical presence of a device on the bus, but has no driver that can explain how to use it. In this case, identification via hardware ID (VEN/DEV) is the only way to find the required driver.
Does chip version affect internet speed?
Yes, directly. Older chips can only support the 802.11n standard (up to 150-300 Mbps), while modern models support 802.11ac (Wi-Fi 5) and 802.11ax (Wi-Fi 6), providing gigabit speeds and better performance in congested environments.
Where can I find a driver if the laptop manufacturer's website doesn't help?
If the laptop manufacturer's website doesn't have drivers for your OS version, search for them on the website of the chip manufacturer (Intel, Realtek, Atheros), using the exact model obtained via the hardware ID. More recent versions are often available there.
Is it safe to use automatic driver installers?
Using such programs carries risks: they can install unsuitable drivers containing adware or impair system stability. It's recommended to manually download drivers from official resources, knowing the exact chip model.