Many users are familiar with the situation when the wireless internet connection suddenly disappears and the system reports missing drivers. This often happens after reinstalling the operating system or experiencing a system crash. Windows The built-in module stops functioning correctly. At this point, it becomes urgent to find and install the correct software, but the problem is that without a working driver, the computer simply doesn't recognize the device.
Finding out the model of your Wi-Fi adapter is the first and most critical step to restoring your network. Many beginners mistakenly believe that knowing the laptop or motherboard model is enough, but the device itself may contain modules from different manufacturers, such as Realtek, Intel, Qualcomm Atheros or MediaTekThe exact hardware identifier allows you to find a compatible driver version from the official source.
In this article, we'll explore several proven methods for determining network interface characteristics using both standard system tools and third-party utilities. You'll learn how to read the codes. Vendor ID And Device ID, which will become a universal key to solving problems with network equipment on any computer.
Using Device Manager for Initial Diagnostics
The most accessible and quick way to get information about your installed hardware is the operating system's standard Device Manager. This tool is built into Windows by default and doesn't require an internet connection, which is especially important when the network isn't yet working. To open it, press a key combination. Win + R and enter the command devmgmt.msc, or right-click on the Start menu and select the appropriate item.
In the window that opens, find the "Network Adapters" section and expand it. This will display a complete list of all network interfaces, including virtual ones, Bluetooth modules, and the physical Wi-Fi adapter. The name usually includes the manufacturer's name, for example, Intel(R) Dual Band Wireless-AC 8265 or Realtek RTL8822BE 802.11ac PCIe Adapter.
However, if the driver isn't installed or isn't working correctly, the device may appear in the "Other devices" section as "Unknown device" with a yellow exclamation point. In this case, the model name won't be immediately visible, but this doesn't mean the information is lost. Double-click the unknown device, go to the "Details" tab, and select the "Hardware ID" property from the drop-down list.
⚠️ Attention: If the "Network adapters" section is missing from the Device Manager or the device is unknown, check whether the Wi-Fi module is disabled in the motherboard BIOS/UEFI or by a physical switch on the laptop case.
You will see lines like this PCI\VEN_8086&DEV_24FD&SUBSYS_90108086&REV_61. Here VEN (Vendor) refers to the manufacturer, and DEV (Device) — the specific chipset model. These hexadecimal codes are the unique identification of your hardware. Knowing them, you can find drivers even for very old or rare devices not found in Windows' automatic databases.
Analysis of VEN and DEV codes: decoding identifiers
When a standard device name isn't available, numeric codes come to the rescue. Understanding their structure allows for the precise identification of even exotic Chinese modules. VEN_8086 always belongs to the company Intel, VEN_10EC - This Realtek, VEN_168C points to Qualcomm Atheros, A VEN_14E4 — for products Broadcom.
To decipher the code DEV The most convenient way is to use specialized online databases or search engines. Simply enter the full device code (for example, PCI\VEN_10EC&DEV_C822) in your browser's search bar. This will take you to technical documentation pages or forums discussing this specific chipset.
Below is a table of the most common manufacturer identifiers that users encounter:
| VEN Code (Vendor) | Manufacturer | Typical adapter series |
|---|---|---|
| VEN_8086 | Intel Corporation | Wi-Fi 6 AX200, Dual Band AC 7260 |
| VEN_10EC | Realtek Semiconductor | RTL8821CE, RTL8723DE |
| VEN_168C | Qualcomm Atheros | QCA9377, QCA6174 |
| VEN_14E4 | Broadcom | BCM43xx |
| VEN_14CD | MediaTek (Ralink) | MT7630, RT3290 |
Using codes is especially relevant for USB adapters, which are often sold without discs and have generic names like "802.11n WLAN Adapter." In such cases, only a thorough analysis Device ID allows you to understand what is hidden inside the plastic case, for example, MediaTek MT7601U, requiring a specific driver for stable operation.
Checking characteristics via the command line and PowerShell
For users who prefer console commands, Windows provides powerful tools for collecting system information. The command line allows you to get a detailed report without having to navigate the graphical interface. Launch Terminal as administrator and enter the command netsh wlan show drivers.
This command will display detailed information about the current wireless network driver, including the vendor name, version, release date, and, most importantly, the adapter description. If the adapter is working correctly, you'll see its full commercial name. However, if the driver is missing, the command may return an error or report that the WLAN service is not running.
netsh wlan show interfaces
A more advanced method is to use PowerShell. The command Get-NetAdapter Lists all network interfaces. To filter only wireless adapters, you can use the command:
Get-NetAdapter | Where-Object {$_.InterfaceDescription -like"Wireless" -or $_.InterfaceDescription -like"Wi-Fi"}
Also useful is the command Get-PnpDevice, which accesses the Plug and Play database directly. It will show devices even with driver issues. Enter Get-PnpDevice | Where-Object {$_.Class -eq"Net"}to see all network devices. The "FriendlyName" column often displays a more descriptive name than the one in Device Manager.
⚠️ Caution: When working with PowerShell, be careful when entering commands. A syntax error can result in a large amount of unnecessary information being output or, in rare cases, an attempt to perform undesired actions if modification commands are used.
The advantage of console methods is the ability to quickly copy and paste the report text into a search engine. This saves time, especially when you need to scan multiple computers on a local network. Furthermore, command line output can be saved to a text file for later analysis or sending to a specialist.
☑️ Checking the adapter via the command line
Determining the adapter model in the Linux operating system
Users of Linux distributions (Ubuntu, Debian, Mint, Fedora) have access to powerful diagnostic tools built into the system kernel. Linux often detects hardware even when Windows requires manual driver installation. To list PCI devices, which include internal Wi-Fi modules, use the command lspci.
Run the command in the terminal lspci | grep -i network or lspci | grep -i wirelessThe system will display a string with the device ID and name. For example: 02:00.0 Network controller: Intel Corporation Wireless 8265 / 8275 (rev 78)If the device is not fully recognized, the command lspci -nn will show the same vendor and device codes in square brackets, for example [8086:24fd].
For USB adapters, the command is intended lsusbThis will list all connected USB devices. Look for a line containing the words "Wireless," "WiFi," or the names of well-known chipset manufacturers. Detailed information about the driver the kernel is attempting to load can be viewed using the command dmesg | grep firmware or dmesg | grep wlan.
In modern distributions, the utility is also useful inxi. If it is installed (package inxi), team inxi -N Provides a concise and clear report on all network interfaces, including the model and driver. This is one of the most convenient ways to quickly diagnose problems.
What to do if Linux doesn't see the adapter?
If the lspci and lsusb commands don't show the adapter, it may be disabled at the kernel level (blacklisted) or require manual enabling via rfkill. Run rfkill list all to check the blacklist status. If the status is blocked, use sudo rfkill unblock wifi.
Third-party utilities and hardware identification methods
If built-in tools fail to provide information, specialized programs come to the rescue. Utilities like CPU-Z, HWInfo or AIDA64 have deep access to the ACPI and DMI system tables. In the "Network" or "PCI Devices" sections, they display detailed chipset information, including revision and supported standards.
A small free program deserves special attention. WirelessMon or Acrylic Wi-Fi HomeThey not only display the adapter model but also analyze the signal quality, which helps determine whether the problem is due to physical damage to the antenna or the module itself. However, lightweight hardware scanners, such as Unknown Device Identifier.
In extreme cases, when software methods are ineffective (for example, the adapter is burned out or unresponsive), physical inspection remains. On laptops, the Wi-Fi module is usually a small PCB. Mini PCIe or M.2, located under the bottom cover. The module's sticker always indicates the exact model number, for example, DW1560 (which is renamed Broadcom) or WB225 (Atheros).
When opening the case, it's important to follow safety precautions: disconnect the battery and discharge static electricity. This method requires electronic disassembly skills, but it provides a 100% guarantee of model identification, as it relies on visual manufacturer markings.
Common problems and nuances when searching for drivers
Even knowing the exact model, users often encounter difficulties finding software. One common problem is the existence of multiple revisions of the same device. The manufacturer may have changed the adapter's internal components while leaving the laptop's name unchanged. Therefore, it's always better to search for drivers by hardware ID rather than by laptop model.
Another nuance is the bit depth of the operating system. Drivers for x64 (64-bit) systems will not work on x86 (32-bit) and vice versa. Before downloading, be sure to check the bitness of your Windows in Settings → System → About.
It's also worth keeping in mind that some OEM adapter versions (those included with HP, Dell, and Lenovo laptops) may require modified drivers. Installing a driver from the chip manufacturer's website (for example, Realtek's) on a laptop adapter can sometimes cause conflicts or loss of power management functionality.
⚠️ Note: Manufacturer website interfaces and driver structures may change. If you haven't found the right version for your OS, try searching for a driver for a related version (for example, Windows 8.1 instead of Windows 10), as they are often compatible. Be sure to create a system restore point before installing.
Keep in mind that generic driver installers often contain adware or install incorrect versions. Using official sources or manual installation through Device Manager using the INF file is the safest option.
FAQ: Frequently Asked Questions
Is it possible to find out the model of a Wi-Fi adapter without internet access?
Yes, you can. All methods described in this article (Device Manager, Command Prompt, PowerShell, and physical inspection) work locally and don't require a network connection. Internet access is only required when downloading the driver file from another device.
What should I do if my adapter shows up as "Standard 11ac Wireless LAN Adapter"?
This means that Windows has installed a standard, basic Microsoft driver. This allows the device to operate in a minimal mode, but doesn't unlock its full potential (for example, access point mode or special power-saving features). For full functionality, it's better to install the manufacturer's driver.
How to distinguish a 2.4 GHz adapter from a 5 GHz one by name?
Typically, the model name includes the following designations: "Dual Band," "AC," "AX," or "5G." If the name only includes "N" (e.g., 802.11n) and does not include the "Dual Band" prefix, it is most likely a single-band adapter that only operates in the 2.4 GHz band.
Why does Device Manager show error code 43?
Code 43 means the device has reported a problem. This could be a software glitch (resolved by reinstalling the driver or relieving static electricity by turning off the power for 10 seconds) or a physical malfunction of the module itself.