How to find out the manufacturer of your laptop's Wi-Fi adapter

Many laptop users are familiar with the situation where a wireless connection suddenly drops or a driver stops responding after an operating system update. In such cases, standard Windows diagnostic tools are often ineffective, returning only generic error codes that provide no clue as to the specific hardware that failed. To successfully restore network functionality or find a specific driver, critical accurately identify the model of the installed module.

The problem is compounded by the fact that laptop manufacturers rarely specify the specific Wi-Fi module model in the specifications on the box, limiting themselves to general statements about support for the 802.11ac or ax standard. The same case can house completely different chips from Intel, Realtek, Qualcomm Atheros, or MediaTek, and each requires unique softwareAttempting to install a driver at random can lead to a conflict with system libraries and complete inoperability of the network interface.

In this article, we'll explore proven methods for identifying the vendor and exact model of a wireless adapter using only the operating system's built-in tools. You won't need to open the device's case or use third-party software, which may be unsafe. We'll cover both the graphical interface and more advanced console methods, allowing you to obtain data even when the standard Device Manager displays the device as "Unknown."

Using Windows Device Manager

The most obvious and accessible way to obtain information about your computer's configuration is through the standard system tool, Device Manager. To open it, press the following key combination: Win + X and select the appropriate item in the menu, or enter the command devmgmt.msc In the Run dialog box, find the "Network adapters" section and expand its contents.

The list displays all network interfaces, including wired (Ethernet) and wireless (Wi-Fi). The name of the wireless module typically includes the manufacturer's name, for example, Intel(R) Wi-Fi 6 AX200 or Realtek RTL8822CEHowever, if the driver is not installed or is not working correctly, the device may appear under "Other Devices" with a yellow exclamation point and a name such as "Network Controller" or "802.11n NIC."

For more detailed information, right-click on the adapter and select "Properties." Go to the "Details" tab, and select "Device Description" or "Hardware ID" from the "Property" drop-down list. This is where the information is often hidden. precise marking chip, which will allow you to find the required driver on the manufacturer's website, even if the standard name is not displayed.

⚠️ Note: If the adapter is marked with a yellow triangle in Device Manager, this means Windows cannot recognize the device due to a missing driver. In this case, the name may be generic, and for accurate identification, it is better to use the hardware ID method described below.
📊 Which method of device identification do you find most convenient?
device Manager
Command Prompt (CMD)
PowerShell
Third-party utilities

Hardware ID Analysis

When a standard device description doesn't provide a clear answer, the Hardware ID comes to the rescue. This is a unique code assigned to each component during manufacturing and consists of a Vendor code (VEN) and a Device code (DEV). This data is the most accurate key to search for drivers in global databases.

To obtain this code, return to the network adapter's properties via Device Manager (Properties tab → Details). Select the "Hardware ID" value from the drop-down list. The "Value" field will display a list of strings, with the top row containing the most detailed information. Example string: PCI\VEN_8086&DEV_2723&SUBSYS_00848010.

To decrypt the code, simply enter the first two pairs of characters after VEN_ And DEV_ to the search engine Code 8086 belongs to the company Intel, 10ECRealtek, 14E4Broadcom, A 168CQualcomm AtherosKnowing the exact model using the DEV code allows you to download the driver from the official website, bypassing automatic installers that often contain unnecessary software.

Using the Command Prompt (CMD)

For users who prefer a text-based interface or need quick diagnostics without navigating through menus, the command line is the ideal tool. netsh (Network Shell) allows you to manage network configurations and display detailed information about the status of wireless interfaces. Launch the command prompt as administrator by entering cmd in the search and selecting the appropriate item.

To get information about the driver and manufacturer, enter the command:

netsh wlan show drivers

In the list that appears, find the line "Manufacturer" (or "Manufacturer" in the English version of the OS). This will indicate the legal name of the company that developed the driver, for example, Intel Corporation or MediaTek Inc.Also pay attention to the "Radio Type" line, which will indicate the supported standards (802.11ac, 802.11ax), which indirectly confirms the generation of the installed adapter.

Additionally, you can use the command systeminfo, which collects summary information about the system. Enter:

systeminfo | findstr /C:"Wireless"

This command will filter the output and show lines containing the word "Wireless." While this method is less accurate than analyzing the hardware ID, it allows you to quickly assess whether the system even sees the adapter and which driver is currently responsible for it.

☑️ Checking the driver via CMD

Completed: 0 / 4

Diagnostics via PowerShell

PowerShell provides more powerful tools for working with the system than the classic command line, allowing you to query information directly from WMI (Windows Management Instrumentation). This method is especially useful when you need to retrieve structured data or when other methods fail. Open PowerShell as administrator.

Enter the following command to list network adapters and their descriptions:

Get-NetAdapter | Where-Object {$_.InterfaceDescription -like"Wireless" -or $_.InterfaceDescription -like"Wi-Fi"} | Select-Object Name, InterfaceDescription, DriverVersion

This script will filter only wireless adapters and display their name, full interface description (usually including the manufacturer), and driver version. If the adapter is hidden or disabled, a deeper query can be performed using the class Win32_NetworkAdapter:

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

Using PowerShell ensures that data is received even in cases where the File Explorer GUI is slow. This reliable way for system administrators performing remote diagnostics via a terminal.

Checking through system information (msinfo32)

The built-in System Information utility aggregates data about all computer components, including those that may be hidden in Device Manager. To launch, click Win + R and enter msinfo32In the window that opens, follow the path: Components → Network → Adapter.

A list of all network cards will appear in the right pane of the window. Select your Wi-Fi adapter (usually with "Wireless" or "Wi-Fi" in the name). In the bottom panel (Details), look for the "Manufacturer" and "Adapter Type" fields. This often includes not only the brand but also the specific chip revision.

Parameter Where to find Value for example
Manufacturer Device Properties / msinfo32 Intel Corporation
Model Equipment ID (DEV) Wi-Fi 6 AX201 160MHz
Driver version device Manager 22.10.0.6
Status device Manager The device is working properly.

This tool is also useful for checking for resource conflicts. If an adapter is completely missing from the System Information list, but it should be physically present (for example, if the laptop has antennas), this may indicate a hardware failure or a disabled BIOS configuration.

What should I do if the adapter is not visible anywhere?

If neither Device Manager nor msinfo32 detects the wireless module, try discharging static electricity. Turn off the laptop, unplug the charger, remove the battery (if possible), and hold the power button for 30 seconds. This will reset the motherboard's power controller.

Laptop hardware identification and specifications

If software solutions fail (for example, the driver is completely destroyed or the module is burned out), the only option is to consult the documentation. The exact model of your Wi-Fi adapter can be found by the laptop's service number (S/N) on the manufacturer's website. The exact part number of the installed module is often listed in the specifications or "Config" section on the support page.

You can also use the command wmic To obtain the BIOS serial number, in order to then check the package contents on the vendor's website:

wmic bios get serialnumber

Please note that depending on the region of delivery and production date, different modules could be installed in the same laptop model. For example, in the line HP Pavilion or Lenovo IdeaPad There was often a lottery between Realtek and Intel modules. Therefore, checking by serial number is more reliable than searching by a general laptop model.

⚠️ Please note: Manufacturers' website interfaces and support page structures change frequently. If you can't find information based on your serial number, please contact the manufacturer's technical support team and provide them with your device's S/N—they will be able to provide the exact specifications for your configuration.

Frequently Asked Questions (FAQ)

Is it possible to find out the manufacturer of a Wi-Fi adapter without installing drivers?

Yes, this is possible. Even without a driver installed, Windows can see the hardware ID. In Device Manager, such a device will be marked with a yellow icon, but the VEN and DEV codes will be available for reading in the Details → Hardware IDs tab.

Why is the adapter called "Generic" or "Standard" in Device Manager?

This means the operating system uses a basic Microsoft driver, which provides minimal functionality but doesn't support all the features of a specific chip. For full functionality, you need to install a driver from the laptop or chip manufacturer (Intel, Realtek, etc.).

Does the adapter manufacturer affect Wi-Fi speed?

Yes, it does. Modules from Intel are traditionally considered more stable and work better with roaming, while budget solutions from Realtek or MediaTek may be inferior in connection stability under heavy loads, although the theoretical speed may be the same.

Where can I find the driver if I know the adapter model?

It's best to download drivers from the laptop manufacturer's official website (Support section), as they've been tested by engineers specifically on your model. An alternative is the chip manufacturer's website (for example, downloadcenter.intel.com), but the driver there may be newer and less stable for your specific hardware.