How to find out which Wi-Fi module is installed on a laptop

A modern laptop is unimaginable without wireless internet connectivity, and this function is provided by a compact yet critical componentβ€”the network adapter. Users often need to find out the exact model of their laptop. Wi-Fi module If you experience connection issues, missing drivers in your system, or want to upgrade your hardware to more powerful equipment.

Knowing the specific chipset and adapter model allows you to not only find the correct software but also determine whether your device supports the latest communication standards, such as Wi-Fi 6 or Wi-Fi 6E. In this article, we'll cover both software and physical hardware identification methods in detail, so you can effectively manage your computer's network settings.

There are many ways to obtain this information, ranging from built-in operating system tools to third-party diagnostic utilities. The method you choose depends on whether the adapter is working correctly or is listed as an unknown device requiring driver installation.

Using Device Manager for quick identification

The simplest and most accessible way, which does not require installing additional software, is to check through the standard device Manager Windows operating system. This method is suitable for most situations where the adapter is at least partially recognized by the system, even if the driver is not installed correctly.

To get started, you need to open the Start menu and enter the query β€œdevice manager” in the search bar or use the keyboard shortcut Win + X and select the appropriate item from the drop-down list. In the window that opens, find the "Network Adapters" section and expand it by clicking the arrow to the left of the category name.

In the list of devices, look for lines containing the words "Wireless", "Wi-Fi", "802.11" or the names of well-known chipset manufacturers such as Intel, Realtek, Qualcomm Atheros or MediaTekIf a yellow exclamation point appears next to the device name, it means the driver is missing or not working correctly, but the hardware model is usually still displayed in the name.

⚠️ Note: If the wireless device isn't listed as a network adapter, only the Ethernet controller, try clicking "Action" β†’ "Refresh hardware configuration" in the Network Manager menu. Sometimes this forces the system to rescan the buses and detect the module.

Double-click the detected adapter to open its properties and go to the "Details" tab. From the "Property" drop-down list, select "Hardware ID" or "VEN_ID and DEV_ID." These codes uniquely identify your module and allow you to find drivers even if the model name is illegible.

Defining a Model via the Command Line and PowerShell

For more advanced users who prefer the command line, Windows offers powerful tools for collecting system information. This method is advantageous because it provides technically accurate data, bypassing the graphical interface, which can sometimes obscure details.

Run Command Prompt as Administrator by typing cmd in the search and run the command netsh wlan show driversIn response, the system will display a detailed report about the wireless network driver, where the first lines will include the "Publisher Name" and "Driver Name," as well as the adapter model.

An alternative method is to use PowerShell. Open the shell and enter the command Get-NetAdapter | Where-Object {$_.InterfaceDescription -like "wireless" -or $_.InterfaceDescription -like "wi-fi"}This query will filter only wireless interfaces and display their description, which usually contains the full chipset name.

  • πŸ“‘ Team ipconfig /all will also show a list of all network interfaces with their physical addresses and descriptions, although the data may be less structured.
  • πŸ’» Using PowerShell provides more flexible filtering options if you have multiple virtual network cards installed on your system.
  • πŸ“ Command results can be copied to the clipboard by selecting the text and pressing Enter, which is convenient for saving logs.

It's important to note that if the driver isn't installed at all, the command prompt may not display the adapter name correctly, showing only "Generic" or leaving the field blank. In this case, you'll need to resort to methods based on hardware identification codes.

What should I do if the command prompt gives an access error?

Make sure you're running the console as an administrator. Without elevated privileges, some network configuration query commands may be blocked by system security policies.

Programs for diagnostics and collecting information about the system

When built-in Windows tools don't provide a complete answer or the interface is damaged, specialized snails come to the rescue. These programs scan all computer buses (PCI, USB) and provide detailed information about each connected component, including the Vendor ID and Device ID.

One of the most popular and free utilities is HWiNFO or AIDA64When you start a scan, they display a device tree, where in the "Network" section you can find a detailed description of the Wi-Fi module, its current connection speed, supported standards, and even the chip's real-time temperature.

Another useful tool is Device Manager in advanced mode or utility PCI-Z, which weighs just a few kilobytes and requires no installation. It instantly displays a list of PCI devices, making it ideal for finding internal modules connected via the PCIe or M.2 bus.

⚠️ Caution: Download diagnostic utilities only from the official websites of their developers. Hardware programs often have deep access to the system, and using unverified software can lead to data leaks or virus infections.

The advantage of using third-party software is that it often detects the device even when Windows displays it as "Unknown Device." The utility reads basic identifiers directly from the chipset registers, ignoring the absence of a driver.

πŸ“Š Which method of identifying a device do you find more convenient?
Via Device Manager: Command Prompt: Third-party programs: Physical inspection of the board

Analysis of physical characteristics and module marking

If software solutions are unavailable due to complete system failure or missing drivers, the only reliable option is a physical inspection. This method requires disassembling the laptop, so be sure to unplug the device and remove the battery, if possible, before beginning.

Wi-Fi modules in laptops are usually small form factor boards Mini PCIe or M.2 (NGFF)They are located under the back cover or require removing the entire bottom panel of the case. The board is always marked with the model number, for example, Intel AX200, Realtek RTL8822BE or Qualcomm QCA9377.

Pay attention to the antenna connectors: two thin wires (usually black and white or gray) connect to the module, ending in round connectors that snap onto the board. Before removing the module, carefully disconnect the antennas by prying them up with a spudger or your fingernail, but do not pull on the wires themselves.

Interface type Appearance Compatibility Speed ​​potential
Mini PCIe Larger, with a cutout on the right Old laptops (before 2015) Up to Wi-Fi 5 (AC)
M.2 2230 Narrow, with two cutouts (Key A+E) Modern laptops Wi-Fi 6 (AX) and higher
USB (internal) It looks like a flash drive without a case. Budget models Depends on the USB version
CNVi (Intel) Intel specific connector Intel processors only High (depending on CPU)

When inspecting the module, it's also worth checking for a protective metal cover. It may conceal a chip, but the model is usually printed on the board itself or on a sticker over the screen. If the sticker is worn off, look for the FCC ID number, which can be searched in the Federal Communications Commission database for an accurate identification of the specifications.

β˜‘οΈ Preparing to disassemble your laptop

Completed: 0 / 1

Search for drivers by hardware identifiers (VEN and DEV)

In situations where the Device Manager shows "Unknown Device" with a yellow icon, codes come to the rescue VEN (Vendor) and DEV (Device). These numerical values ​​are the digital identification of your hardware and allow you to find the driver even without knowing the exact model name.

To obtain these codes, open the properties of the unknown device in Device Manager, go to the Details tab, and select Hardware IDs from the list. You will see lines like PCI\VEN_8086&DEV_0084. Here VEN_8086 means the manufacturer (Intel), and DEV_0084 - a specific device.

By entering these codes into a search engine or specialized directory website (such as devid.info or pcidatabase.com), you'll get the exact device name and a link to the appropriate driver. This is the most reliable way to restore your network card after reinstalling Windows.

However, be careful when downloading drivers from third-party resources. Always scan the files with an antivirus and verify the manufacturer's digital signature. It's best to search for drivers on the official website of the laptop or chipset manufacturer, using the codes found as a keyword.

⚠️ Please note: Manufacturer website interfaces and driver catalog structures change frequently. If you can't find the model you need by name, using VEN/DEV codes remains the most reliable search method.

After downloading the driver file, install it and restart your computer. If the device is detected correctly, the yellow icon in Device Manager will disappear, the model name will appear, and the icon for available Wi-Fi networks will appear in the Windows system tray.

Common problems and their solutions during identification

Even knowing how to view module information, users may encounter unusual situations. For example, a module may appear in the system but not be connected to any networks, or it may disappear from the device list after waking from sleep mode.

A common cause is a driver version conflict or a power saving setting. In Device Manager, under the adapter properties, on the "Power Management" tab, uncheck "Allow the computer to turn off this device to save power." This will prevent the system from disabling the module.

The problem could also be with the antenna. If the laptop was dropped or disassembled, the antenna connectors may have come loose. In this case, software tests will show the module's presence, but the signal strength will be critically low or zero. Checking the signal strength (RSSI) in the command line can help diagnose this hardware issue.

  • πŸ”Œ Check if Wi-Fi is blocked by a physical switch on the laptop case or a key combination (e.g. Fn + F2).
  • πŸ”„ Reset network settings via Settings β†’ Network & Internet β†’ Network reset can fix software configuration errors.
  • πŸ’Ύ An outdated BIOS version can also affect the correct operation of new Wi-Fi modules, so check the manufacturer's website for updates.

If none of the software methods detect the adapter, but a physical inspection reveals its presence on the board, the module may be faulty. In this case, the simplest solution is to purchase an external USB Wi-Fi adapter, which will instantly add wireless functionality without the need for complex repairs.

Why did Wi-Fi disappear after reinstalling Windows?

A clean OS installation often fails to install drivers for specific hardware. The system installs a basic driver, which may not support all the module's features or may not recognize it at all.

Final recommendations for selection and replacement

If you're planning to replace a module to improve connection speed or stability, make sure the new chip is compatible with your laptop. Some manufacturers (such as HP and Dell) whitelist the BIOS, allowing only certified adapter models to work.

When choosing a new module, focus on standard support Wi-Fi 6 (802.11ax), which ensures better performance in noisy environments and high data transfer rates. It's also worth paying attention to the presence of a module Bluetooth, since modern Wi-Fi cards often combine both functions.

Please note that replacing the module may void your device's warranty if your laptop is still under warranty. In such cases, it's best to contact an authorized service center for diagnostics and repairs.

Is it possible to use a Wi-Fi module from one laptop on another?

Physically, yes, if the form factors match (usually M.2 or Mini PCIe). However, driver or BIOS (whitelist) issues may arise, especially on business-class laptops. Also, check the number of antennas: if you have two antennas, and the module requires three for maximum speed, it will work, but not at full capacity.

What does "Microsoft Wi-Fi Direct Virtual Adapter" mean?

This isn't a physical device, but a virtual driver created by the operating system to enable a direct connection between devices (for example, to mirror your screen to a TV or share Wi-Fi from a laptop). There's no need to remove it; it's a system component.

Why is the Wi-Fi speed lower than stated in the module specifications?

Actual speed depends on many factors: the router (access point) standard, the number of obstacles, the level of interference from neighboring networks, and the quality of the drivers. Even a Wi-Fi 6 module won't deliver the advertised speeds if the router only supports Wi-Fi 4 (N).