A modern laptop is a complex computing device, where every component plays a critical role in ensuring performance. Users often face the need upgrade wireless connection, wanting to upgrade to a faster standard or eliminate constant connection drops. However, before buying a new network card, it is necessary to accurately identify the current equipment installed in the system.
Determining the adapter model is necessary not only for purchasing a compatible replacement, but also for finding current ones drivers, which can fix software errors. Standard Windows 10 methods provide basic information, but more advanced tools are often required for in-depth diagnostics. In this article, we'll cover all available methods, from simple commands to professional software.
Understanding which chipset controls the wireless connection in your device provides the key to solving a variety of wireless problems. Internet connectionWhether it's a frequency conflict or the need to manually adjust power-saving settings, understanding your hardware is the first step to success. Below, we'll explore methods that will help you obtain comprehensive information about your network equipment.
Using Windows Device Manager
The easiest and fastest way to find out your network adapter model is to use the operating system's built-in tool. Device Manager displays a complete list of connected devices, categorizing them by type. To access it, simply right-click the Start button and select the appropriate item from the menu or enter the command devmgmt.msc in the execution line.
In the window that opens, find the "Network Adapters" section and expand its contents. Here you'll see a list of all network interfaces, including wired and wireless. The module you're looking for usually contains the words "Wireless," "Wi-Fi," "802.11," or chip manufacturer names, such as Intel, Realtek or Qualcomm.
⚠️ Note: If the device name contains an exclamation point on a yellow background, this indicates missing drivers or a hardware conflict. In this case, the model may be displayed as "Unknown Device" with an error code.
For more detailed information, double-click the adapter name and go to the "Details" tab. From the "Property" drop-down list, select "Hardware IDs." The "Value" field will display the codes. VEN (Vendor ID) and DEV (Device ID), which allows you to find the exact specification of the chip in the manufacturers' databases, even if the driver is not installed.
What do the VEN and DEV codes mean?
The VEN code (e.g., 8086 for Intel) identifies the manufacturer, while the DEV code identifies the specific device model. This data is universal and works even without drivers installed, making it useful for system recovery.
Diagnostics via the command line and PowerShell
For users who prefer a text-based interface or need more precise technical data, the command line and PowerShell are excellent solutions. These tools provide structured information that is sometimes hidden by graphical interfaces. You can launch the console through Windows search by entering cmd or powershell.
One of the most useful commands is a WMI (Windows Management Instrumentation) query. It provides detailed information about network cards, including their status, connection speed, and physical connection type. Enter the following command to list the adapters:
netsh wlan show drivers
This command will display the driver name, vendor, version, and supported radio types and channels. Note the "Radio Type" line, which will list the standard (e.g., 802.11ac or 802.11ax), and the "Supported Radio Types" line, which will list all supported protocols.
An alternative method is to use PowerShell with a filter by connection type. This is especially useful if you have multiple network cards installed on your system and want to specifically select the wireless one. This command allows you to filter out unnecessary virtual adapters and focus on the physical one. WiFi module.
Get-NetAdapter | Where-Object {$_.MediaType -eq "802.3"} | Select-Object Name, InterfaceDescription, Status
The obtained data can be copied and analyzed. If you see a model name but are unsure of its specifications, this data can easily be verified online. This approach is often used by system administrators to remotely diagnose user issues.
☑️ Check via CMD
Analysis via system information (msinfo32)
The System Information utility provides an in-depth look at your computer's configuration, including details not visible in Task Manager. It can be launched with the command msinfo32 in the Run window. This is a powerful tool for gathering a complete picture of your hardware without installing additional software.
In the left pane of the window, expand the "Components" branch and select "Network." A list of all network adapters will appear on the right. Find "WLAN Adapters" or a similar name in the list. This displays not only the name, but also the MAC address, connection type, and status.
| Parameter | Description | Where to find |
|---|---|---|
| Name | Adapter model | Properties |
| Type | Ethernet 802.3 | Properties |
| Address | Device MAC address | Properties |
| State | OK / Error | Properties |
It's important to note that the information in this section is updated during system boot. If you've just updated drivers or replaced a module, a reboot may be required for the latest data to be displayed. You can also view IRQs and memory addresses here, which is useful for in-depth debugging of hardware conflicts.
⚠️ Note: Data in the "System Information" section may be cached. If you've updated the driver but the information remains out of date, perform a full reboot of the laptop rather than simply waking it from sleep mode.
Third-party hardware identification utilities
When built-in Windows tools aren't enough, specialized programs come to the rescue. Utilities like AIDA64, HWiNFO or CPU-Z They can read data directly from chipset registers, ignoring operating system restrictions. They display the actual chip model, even if the driver is installed incorrectly.
Popular program HWiNFO In "Sensors-only" or "Summary" mode, it immediately displays the network controller model in the "Network" section. It also displays the module temperature (if the sensor is supported), the current link speed, and the signal strength in dBm. This is an invaluable tool for diagnosing overheating or unstable reception.
Another powerful tool is AIDA64 ExtremeIn the "Network" -> "Windows Network" section, you can see not only the model, but also detailed packet transfer statistics. For regular users, there is a utility PCI-Z, which specializes in PCI/PCIe devices, which include modern WiFi modules of the format M.2 or Mini PCIe.
Using third-party software is especially important when purchasing used laptops or building custom PCs, where documentation may be lacking. These programs frequently update their databases, allowing them to correctly identify the latest adapter models that Windows 10 may identify as a "Standard Module."
Physical markings and specifications of the laptop
If software solutions are unavailable (for example, the system won't boot), you'll have to rely on physical labels. Many laptops have specifications stickers on the bottom of the case. They may indicate the wireless module type, such as "Intel Dual Band Wireless-AC 8265."
However, laptop manufacturers often vary the components depending on the batch and region. The same laptop model could have modules from different manufacturers installed in different months of production.Intel, Realtek, MediaTek). Therefore, the sticker on the case does not always guarantee 100% accuracy of information about a specific specimen.
The most reliable physical method is a visual inspection of the module itself. This requires removing the laptop's back cover and locating the network card. It's a small board measuring approximately 12x30 mm (M.2 2230 form factor) or a square board (Mini PCIe). The model number is always printed on the PCB.
⚠️ Caution: Before opening the laptop case, be sure to disconnect the battery! Even when turned off, the laptop is still live, and careless operation could cause a short circuit and damage the motherboard.
When inspecting the board, look for markings like "Model:," "P/N," or manufacturer logos. Also, pay attention to the number of antenna wires: typically, there are two (black and white) for the 2x2 MIMO standard, but higher-end models may have more to support 4x4 MIMO. This will also indicate the class of the installed hardware.
Comparative table of determination methods
To help you choose the right diagnostic method, we've prepared a summary table. It will help you quickly navigate depending on your goals and system access level.
| Method | Complexity | Accuracy | Internet access is needed |
|---|---|---|---|
| device Manager | Low | Average | No |
| Command line | Average | High | No |
| Third-party software | Low | Maximum | For download |
| Visual inspection | High | 100% | No |
Each method has its advantages. For a quick driver version check, the Driver Manager is suitable, while for selecting a replacement during an upgrade, a combination of the command line and visual inspection is better. Knowing these nuances will save you time and money.
Frequently Asked Questions (FAQ)
Is it possible to replace the WiFi module in any laptop?
Not all of them. In modern Ultrabooks, the module is often soldered directly to the motherboard and is not replaceable. In business series (ThinkPad, Latitude) and gaming laptops, replacement is usually possible if the module is not tied to the manufacturer's BIOS (whitelist).
Why does Windows show "Standard WiFi Module"?
This means the operating system couldn't find a suitable driver for your model. It uses a generic Microsoft driver, which provides basic functionality but doesn't fully exploit the device's potential or name.
Does the module model affect internet speed?
Yes, directly. Older modules (standard N) won't deliver speeds higher than 100-300 Mbps, even with a perfect signal. For gigabit speeds over the air, a module that supports this standard is required. AC or AX (Wi-Fi 6).
How to update a driver if there is no internet?
Use another computer or smartphone to download the driver from the laptop or chipset manufacturer's official website. Transfer the file to the affected laptop via USB and install it manually through Device Manager.