Wireless internet has become a standard in today's world, but users often encounter unreliable connections or driver failures after a system update. This often leads to the question of replacing hardware or manually installing software, but what should you do if you don't know which module is installed on your device? Equipment identification β This is the first and critical step in diagnosing any network problems.
Determine the model Wi-Fi adapter There are several ways to fix this, ranging from simple built-in operating system tools to a physical inspection of the board. Most often, software methods are sufficient, as they don't require disassembling the laptop case or special tools. Accurate information about the chip manufacturer and its revision will allow you to find up-to-date drivers on the official website, rather than risk installing questionable software from third-party sources.
In this article, we'll cover all available methods in detail, from using Device Manager to the command line, and explain how to interpret the codes you receive. Understanding which one network controller is responsible for wireless communication in your system, will help avoid equipment conflicts and ensure maximum data transfer speed.
Using Windows Device Manager
The most accessible and fastest way to obtain information about network equipment is with a standard Windows operating system tool. This method doesn't require installing additional software and works even if the drivers are installed incorrectly, although in the latter case, the device may appear as unknown.
To get started, open the Start menu, right-click and select Device Manager or use the keyboard shortcut Win + XIn the window that opens, find the "Network Adapters" section and expand it. This will display a list of all network interfaces, including wired and wireless.
Usually the name of the wireless module contains keywords Wireless, Wi-Fi or 802.11If you see a name like "Intel Dual Band Wireless-AC 8265" or "Realtek RTL8822BE," then this is the model you're looking for. However, sometimes the system may display the device as "Unknown Device" or "Network Controller," which requires a deeper analysis through the hardware properties.
It is important to distinguish between built-in modules and USB adapters, which may also appear in this list. Built-in adapter usually has a name corresponding to the laptop or chipset manufacturer, while external devices are often branded with the dongle manufacturer's brand.
Search by Hardware ID
If the standard device name doesn't provide complete information or the driver is missing, a unique hardware identifier can help. This code is your device's digital ID and allows you to accurately identify the model even without installed drivers. You can find it in the same Device Manager.
Right-click the device in question, select "Properties," and then go to the "Details" tab. From the "Property" drop-down list, select the option Equipment ID or Hardware ID. The "Value" field will display a string containing codes. VEN_ (Vendor ID) and DEV_ (Device ID).
These codes can be entered into a search engine or specialized PCI ID databases. For example, the code VEN_8086 belongs to Intel, and DEV_24F3 Indicates a specific chip model. This is the most reliable identification method for experienced users.
Decoding the VEN and DEV codes
The VEN code indicates the hardware manufacturer (e.g., 8086 - Intel, 10EC - Realtek, 14E4 - Broadcom). The DEV code identifies a specific device within the manufacturer's product line. Knowing these two parameters, you can find a driver even for very old or rare hardware.
When using this method, it's important to note the presence of multiple lines of code. The system provides a list of identifiers in order of priority: from the most specific (with revision) to the most general. It's best to use the top line to search for the driver, as it contains the most accurate information about device revisions.
Obtaining information via the command line
For those who prefer a text-based interface or need to quickly gather data, the Windows command line offers powerful tools. Using console commands, you can obtain detailed information about network interfaces, including their physical name and status.
Launch Command Prompt with Administrator privileges by typing cmd in the search and selecting the appropriate item. To get a list of all network adapters, enter the command ipconfig /allHowever, for more detailed information about the Wi-Fi module, it is better to use the command netsh wlan show drivers.
netsh wlan show drivers
This command will output a detailed report about the wireless network driver, including the "Type" line, which will list the adapter manufacturer and model name, such as "Intel(R) Dual Band Wireless-AC 7265." You can also see the driver version and supported radio types.
βοΈ Check via command line
An alternative option is to use the utility wmicBy entering a query wmic nic where "NetEnabled=true" get name, manufacturer, you'll get a list of active network cards and their manufacturers. This is useful if you need to quickly filter only working devices.
Using PowerShell for Detailed Diagnostics
PowerShell is a more modern and powerful system management tool than the classic command line. It allows you to obtain structured hardware data that can be easily filtered and analyzed.
Open PowerShell and enter the command Get-NetAdapterIt will display a list of all network adapters with their names, status, and MAC addresses. To get more detailed information about a Wi-Fi adapter, you can use the command Get-NetAdapter | Where-Object {$_.MediaType -eq "802.3"}, although for wireless networks, specific modules are more often used.
A great command to get information about drivers and models in PowerShell is:
Get-PnpDevice -Class Net | Select-Object FriendlyName, Status, InstanceId
This query will output a table with the friendly names of devices (FriendlyName), their current status and unique identifiers. Friendly name often contains the full commercial name of the model, which is convenient to use for searching for updates.
If standard commands don't produce results, you can turn to WMI classes. Query Get-WmiObject Win32_NetworkAdapter | Where-Object {$_.NetEnabled -eq $true} will only show active adapters. Pay attention to the properties Manufacturer And ProductName, which contain the information you are looking for.
Specialized utilities for hardware identification
When built-in Windows tools prove insufficient or the system is unstable, third-party programs come to the rescue. There are many free utilities that specialize in collecting hardware information and can accurately identify the Wi-Fi adapter model.
One of the most popular is the utility HWiNFOIt scans the system and produces a detailed report on all components. In the "Network" section, you can find not only the adapter model but also the chip temperature, signal strength, and the channel used.
- π‘ HWiNFO β a professional tool with a detailed report on each system component.
- π PCI-Z β a lightweight portable utility that instantly identifies a device by its VEN and DEV codes.
- π» CPU-Z β although the program is processor-oriented, it can display information about the chipset and associated controllers in the Mainboard tab or through plugins.
Another great option is the program AIDA64 (formerly Everest). Under "Network" -> "Windows Network," it displays detailed information about each adapter, including MAC address, connection speed, and bus type. A trial version is sufficient for one-time use.
Using specialized software is especially important when drivers are completely missing and the device is detected by the system as a "Basic Network Adapter." Programs like PCI-Z can read information directly from hardware registers, ignoring the absence of drivers.
Physical markings and specifications of the laptop
If software solutions are unavailable (for example, the laptop won't turn on or the operating system won't load), a physical inspection is the only option. The Wi-Fi module model is often listed on a sticker located on the bottom of the laptop, next to the serial number or Windows logo.
The sticker may indicate the model number of the laptop itself (for example, HP Pavilion 15-dk0000). Knowing the exact laptop model, you can go to the manufacturer's official website, navigate to the Support section, and check the specifications. This will tell you exactly which Wi-Fi module is installed in your current configuration.
In some cases, especially after a DIY upgrade, the sticker may be missing or replaced. In this case, you'll have to disassemble the laptop. The Wi-Fi module is a small circuit board, usually in the form of a M.2 or Mini PCIe, to which thin antenna wires (black and white) are connected.
| Interface type | Appearance | Where is it used? | Example of a model |
|---|---|---|---|
| Mini PCIe | Short board with cutout | Old laptops (before 2015) | Atheros AR9285 |
| M.2 (NGFF) | Narrow long board | Modern laptops | Intel AX200 |
| USB (internal) | Looks like a flash drive inside the case | Budget models | Realtek RTL8723BU |
| CNVi | Intel specific connector | New Intel platforms | Intel AC 9560 |
During a physical inspection, pay attention to the markings on the module's metal shield or on the board itself. These always contain the part number and chip model. Antenna wires It should be disconnected very carefully, pulling on the connector and not on the wire itself, so as not to damage the connection.
β οΈ Attention: When disassembling the laptop to inspect the Wi-Fi module, be sure to disconnect the battery! A short circuit on the board with the battery connected can cause irreversible damage to the motherboard.
Common problems and their solutions
Even knowing the adapter model, users may encounter difficulties when trying to get it working. Often, the device is detected but doesn't work, or its operation is unstable. This may be due to a driver version conflict or power saving settings.
One common problem is when Windows automatically installs a generic driver that doesn't support all the features of a specific chip. In this case, a yellow exclamation point may appear in Device Manager, or the device may spontaneously disconnect.
To resolve this issue, we recommend completely uninstalling the current driver via Control Panel -> Programs and Features, and then installing the version downloaded from the official website of the laptop or chipset manufacturer. Using drivers from aggregator websites may result in the installation of malware.
Why doesn't Wi-Fi work after reinstalling Windows?
Often, the problem lies in missing chipset drivers or power management. Try unchecking "Allow the computer to turn off this device to save power" in the Wi-Fi adapter properties in Device Manager.
It's also worth checking the "WLAN AutoConfig" service. If it's stopped, wireless networks won't work. Make sure that the list of services (called by the command) services.msc) this service is running and the startup type is set to "Automatic".
Is it possible to use a driver from a different laptop model?
You can use a driver from a different model only if both laptops have the same Wi-Fi module (identical VEN and DEV codes). The driver is selected specifically for the chip, not the laptop case. However, manufacturers often modify drivers, so it's best to look for the original.
What should I do if the device code is not in the database?
If searching by code yields no results, the device may be too new or, conversely, very old. Try searching by the first DEV value, ignoring the revision. You can also try installing the chipset drivers for your motherboardβthis can sometimes help the system correctly identify the peripherals.
Does the adapter model affect internet speed?
Yes, directly. Older 802.11n adapters won't be able to provide speeds higher than 150-300 Mbps, even if your ISP plan allows for higher speeds. For gigabit speeds, you need an adapter that supports the standard. 802.11ac (Wi-Fi 5) or 802.11ax (Wi-Fi 6) and the corresponding router.
How do I know if my adapter supports 5GHz?
The model name often includes the word "Dual Band" or "AC". Also, in the command line, the command netsh wlan show drivers The "Supported Radio Types" line must contain 802.11a or 802.11ac. If only 802.11b/g/n is listed, the 5 GHz band is not supported.
Do I need to update my Wi-Fi driver if everything works?
If the connection is stable and the speed matches your plan, there's no immediate need to update. However, new drivers may contain fixes for security vulnerabilities and improve compatibility with new routers, so it's a good idea to check periodically.