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

When a laptop stops detecting wireless networks or the connection speed drops to a crawl, a thorough hardware diagnosis is often necessary. In such cases, the first step is identifying the wireless module installed in the system. Knowing the exact model Wi-Fi adapter necessary for finding current drivers, checking compatibility with new communication standards, or eliminating software conflicts.

The Windows operating system has a built-in arsenal of tools that allow you to obtain comprehensive information about network equipment without installing additional software. However, standard interfaces can hide detailed technical specifications accessible only through system registries or console commands. Knowing where to find this data saves time when setting up a home network.

In this guide, we'll cover all available methods for determining wireless card characteristics, from simple visual checks to in-depth analysis via the command line. You'll learn to distinguish between physical and virtual adapters and understand how to interpret the obtained data to select the right drivers.

Visual inspection and documentation of the device

The most obvious, yet often overlooked, way to find out the wireless module model is to consult the technical documentation that came with your laptop. Device specifications typically include more than just the supported standard (e.g., 802.11ac or Wi-Fi 6), but also the specific chipset installed by the manufacturer. If the paper manual is lost, similar information can easily be found on the manufacturer's official website using the exact model number of your laptop.

In some cases, manufacturers place stickers with wireless technology logos on the laptop case, near the touchpad, or on the keyboard. While these stickers rarely contain the full adapter model name, they do indicate the chip series, such as Intel Centrino or Qualcomm AtherosThis gives you an initial understanding of which equipment vendor you'll be working with.

⚠️ Note: In modern Ultrabooks, the wireless module is often soldered directly onto the motherboard. Visually identifying the model without opening the case and using a magnifying glass is practically impossible in such cases, so software diagnostics are the preferred method.

If the laptop was assembled or upgraded, the information in the documentation may not reflect reality. In such cases, rely on software verification tools, as they read data directly from hardware identifier devices, ignoring factory specifications.

Checking through Windows Device Manager

The most common and accessible method is to use the built-in system tool "Device Manager." This interface provides a structured list of all connected hardware, including hidden and virtual components. To access it, simply right-click the Start button and select the appropriate item from the context menu, or use the command devmgmt.msc in the Run window.

In the window that opens, find the "Network Adapters" section and expand it. A complete list of network interfaces will be displayed here. The wireless module you're looking for usually has the words "Network Adapters" in its name. Wireless, Wi-Fi, 802.11 or brand names like Intel, Realtek, MediaTek. Other entries containing terms Bluetooth, Virtual or WAN Miniport, refer to other functions and are not the main Wi-Fi adapter.

Double-clicking on a detected device and going to the "Details" tab will give you access to more detailed technical information. Select "Device Details" or "Hardware IDs" from the "Property" list. The codes will be displayed there. VEN_ (Vendor ID) and DEV_ (Device ID), which uniquely identifies the chipset even if the driver is not installed correctly.

It's important to note that if the driver is missing or not working correctly, the device may appear in the "Other Devices" section with a yellow exclamation point. In this case, the system won't be able to name the adapter "Wi-Fi Adapter," but will use a generic name like "Network Controller." This is where knowing the codes comes in handy. VEN and DEV becomes critical for software discovery.

Using the command line for detailed diagnostics

For users who prefer a text-based interface or need more precise data, the Windows command line offers a powerful tool. netshThis utility allows you to output network and adapter status reports in a readable format. The console must be run as administrator to access all levels of information.

Enter the command netsh wlan show drivers and press Enter. The system will display a detailed report about the wireless network driver. At the top of the report, you'll see the "Name" line, which lists the exact name of the adapter, as well as the "Vendor" and "Development Date." Below that, the supported technology will be listed, for example, 802.11n, 802.11ac or 802.11ax.

📊 Which verification method do you use most often?
device Manager
Command line
Third-party programs
At random

Another useful command line switch is wmicBy entering a query wmic path win32_networkadapter where "netenabled=true" get name, manufacturer, you'll get a list of only active network adapters, including their manufacturer. This helps you quickly filter out virtual adapters from VPN clients or emulators, which often clutter the list in Device Manager.

To save the report to a text file, which is convenient for remote diagnostics, you can use output redirection. Command netsh wlan show drivers > wifi_info.txt will create a file with a full description in the current directory. This is especially useful if you need to pass information to a technical support specialist without the risk of errors when rewriting long names.

Analysis via PowerShell and system utilities

PowerShell provides more flexibility for querying information from WMI (Windows Management Instrumentation)This method allows you to obtain data that might be hidden in standard interfaces. Open PowerShell and enter the command Get-NetAdapter | Where-Object {$_.InterfaceDescription -like "wifi" -or $_.InterfaceDescription -like "wireless"}.

This query will filter adapters, leaving only those whose interface description contains wireless-related keywords. This will display the adapter's name, status, and description. If an adapter is disabled, it can still be found by expanding the search to all devices, removing the status filter.

⚠️ Note: Command line interfaces may vary depending on your Windows version. In Windows 11, some PowerShell commands may require additional modules or administrator privileges to fully access hardware properties.

Also worth mentioning is the System Information utility. You can launch it with the command msinfo32In the tree on the left, navigate to "Components" → "Network" → "Adapter." A list of all network cards will appear in the right part of the window. Look for lines where the "Adapter Type" field indicates wireless connection. Here you'll find information about the MAC address, DHCP status, and driver version.

Specialized software for equipment identification

If standard Windows tools don't provide a complete picture or show the device as "Unknown," third-party utilities can help. Programs like CPU-Z, HWiNFO or AIDA64 They can read information directly from chipset registers, bypassing standard operating system drivers. This allows device identification even without software.

Utility HWiNFO In "Sensors-only" or "Summary" mode, it will provide comprehensive information about the Wi-Fi module model, its current temperature (if the sensor is supported), and the link speed. This is a professional tool that displays not only the model but also the connection interface (e.g., PCI Express or USB).

For users who simply need to quickly identify a model, lightweight portable scanners are available. They require no installation and work immediately after launch. Such programs are often used by system administrators for inventory management, as they allow for quick downloading of equipment lists for hundreds of computers.

Table of popular manufacturers and their designations

When searching for drivers or technical information, it's important to correctly interpret the names returned by the system. Different manufacturers use different naming schemes, but keywords are often repeated. Below is a table to help you match the system name to the actual brand.

Manufacturer Key words in the title Typical series Peculiarities
Intel Intel(R) Wi-Fi, Centrino, AX200 AX, AC, N series High stability, frequent driver updates
Realtek Realtek RTL, Wireless LAN 88xx, 87xx series Widespread, driver version sensitive
Qualcomm Atheros Atheros, Qualcomm AR9xx, QCA Good compatibility with Linux, stable operation
MediaTek (Ralink) MTK, Ralink, MediaTek MT79xx, RT Often found in budget laptops
Broadcom Broadcom, BCM BCM43xx Used in premium models and MacBooks

Knowing the manufacturer makes it easier to find the right driver on the vendor's website. For example, for chips Realtek You often have to search for drivers on the laptop manufacturer's website, as the versions on the Realtek website may be universal, but not always stable for a specific laptop model.

Pay attention to the suffixes in the model name. The presence of letters AX indicates support for the latest standard Wi-Fi 6, which guarantees high speeds and operation in congested airwaves. The absence of such designations may indicate an older standard. N or AC.

Troubleshooting adapter detection issues

There are situations when the system doesn't detect the Wi-Fi adapter at all. In Device Manager, the list of network adapters may be empty or contain only wired controllers. This often indicates that the device is disabled at the hardware level or in the BIOS. Check your BIOS/UEFI settings by finding the section Advanced or Security and making sure that the option Wireless or WLAN Device installed in Enabled.

☑️ Diagnosing a missing adapter

Completed: 0 / 4

Another possible cause is a malfunctioning power controller. In this case, a complete static discharge can help: turn off the laptop, unplug the charger, remove the battery (if removable), and hold the power button for 15-20 seconds. Then, reassemble the system and check if the adapter is working.

⚠️ Important: If the adapter disappeared after a Windows update, don't rush to reinstall the drivers. Try selecting "Scan for hardware changes" from the "Action" menu in Device Manager. The system often reconnects to the device automatically.

If software solutions don't help, there may be a physical fault with the module or loose contacts. In laptops with access to the internals, you can try carefully reconnecting the antenna wires and the adapter board itself after disconnecting the power from the device.

What should I do if the adapter is detected but does not work?

If the device is visible in the system but networks are not found, try uninstalling the driver completely (by selecting "Delete the driver software" when uninstalling the device) and rebooting. Windows will attempt to install a basic driver, which may work more reliably.

Frequently Asked Questions (FAQ)

Can an antivirus hide a Wi-Fi adapter?

Yes, some antivirus protection features (such as "Public Network" mode or blocking unauthorized access) can conflict with wireless network drivers, rendering the adapter invisible or inoperable. Try temporarily disabling your antivirus's firewall to test.

How do I know if my adapter supports 5GHz?

Run the command netsh wlan show driversFind the line “Supported radio types.” If it’s listed 802.11a, 802.11n (in combination with 5G) or 802.11ac, then 5 GHz support is present. Unless 802.11b/g/n (2.4 GHz), then the 5 GHz range is not supported.

Why does the adapter have the word "Virtual" in its name?

Word Virtual Typically refers to a software interface created by a Bluetooth driver, VPN client, or hypervisor. This is not a physical Wi-Fi module. Look for a device without the "Virtual" prefix or with a brand name (Intel, Realtek).

Is it possible to replace the Wi-Fi module on a laptop?

In most older and mid-range laptops, the module has the format M.2 or Mini PCIe and is subject to replacement. However, in many modern Ultrabooks, the module is soldered to the board, and its replacement can only be done at a service center using soldering equipment.