In today's digital environment, a stable wireless connection is critical for work, education, and entertainment. When network connection issues arise or data transfer speeds are slow, the first step in troubleshooting is often a hardware check. Users often wonder how to check the name of their WiFi adapter to find the latest drivers or check compatibility with new communication standards.
Identifying your installed network equipment is essential not only for finding software updates, but also for understanding the technical limitations of your system. Knowing the exact model wireless communication module, you can determine whether it supports 5 GHz frequency, MIMO technology or standard Wi-Fi 6Without this information, troubleshooting becomes a guesswork, and installing the wrong drivers can render the network card completely inoperable.
There are many ways to obtain this information, from simple graphical interfaces to advanced command lines. In this article, we'll cover methods for Windows, Linux, and macOS operating systems in detail, as well as specialized utilities that provide comprehensive technical specifications. Knowing the exact chipset model (e.g. Intel AX200 or Realtek RTL8822CE) is key to successfully setting up a network.
Using Device Manager in Windows
The most direct and reliable way to find out which one wireless module To find out which hardware is installed on your computer, open the Device Manager. This built-in Windows tool provides a complete 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.
In the window that opens, find the "Network Adapters" section and expand its contents. All network interfaces will be listed here: wired Ethernet cards, virtual VPN adapters, and, of course, the WiFi module you're looking for. The name usually includes the manufacturer's marking, for example, Intel, Realtek, Qualcomm Atheros or Broadcom, followed by the alphanumeric model index.
If you see a device with an exclamation mark or labeled as "Unknown Device", this indicates a problem with driversIn this case, the system cannot correctly identify the hardware, and you will need to install the driver manually using the hardware ID. Double-clicking the device will open the properties window, where you can find the unique ID for searching for software in the "Details" tab.
- 🔍 Press Win+X and select "Device Manager" from the list.
- 📡 Expand the "Network adapters" branch to view the list.
- 💻 Find the line with the word Wireless, WiFi, or 802.11 in the name.
- ℹ️ Open the device properties to view the operating status.
⚠️ Attention: Do not remove devices named "Virtual Adapter," "TAP-Windows Adapter," or "Hyper-V," as they are required for VPN services and virtual machines. Removing them may disrupt the functionality of third-party software.
The Device Manager interface may look a bit outdated, but it provides access to technical information not available in the regular settings. This is where you can see the driver version, release date, and digital certificate provider. This information is critical when deciding whether to upgrade or downgrade. system software for the network card.
Getting information via the command line and PowerShell
For users who value speed and precision, the command line offers powerful tools for gathering system information. Commands not only display the adapter's name but also provide detailed information about its status and configuration without having to navigate graphical menus. This is especially useful for remote administration or working with limited OS versions.
One of the most informative commands is the interface query NetshBy entering the appropriate query, you'll receive a detailed report on the current WiFi connection status, including the adapter name, network SSID, radio type, and even signal strength. This method works on all modern versions of Windows and doesn't require administrator rights for basic viewing.
netsh wlan show interfaces
An alternative and more modern way is to use a shell PowerShell. Team Get-NetAdapter Allows you to filter only wireless interfaces and display their properties in a convenient format. This allows you to quickly copy the exact name for searching online or in the manufacturer's knowledge base.
Get-NetAdapter | Where-Object {$_.MediaType -eq "802.3"} | Select-Object Name, InterfaceDescription
When using PowerShell, it's important to understand the difference between "Name" (the system interface name, such as Wi-Fi) and "InterfaceDescription" (the physical device name). The latter field contains the target chipset model. If you plan to automate data collection from multiple computers, PowerShell-based scripts are the optimal solution.
- 🖥️ Launch the command prompt via search (cmd).
- ⌨️ Enter the command
netsh wlan show interfacesand press Enter. - 📄 Find the line "Name" in the output report.
- 🚀 Use PowerShell for more flexible data filtering.
Analysis via system information and dxdiag
The Windows operating system stores a colossal amount of hardware configuration data in a special section called "System Information." This tool aggregates information from the registry and hardware polls, providing a unified picture of the PC's health. To access it, simply enter the command msinfo32 in the Run dialog box.
In the System Information window, navigate to "Components" -> "Network" -> "Adapter." A list of all network cards will be displayed on the right side of the screen. Find the entry where the "Adapter Type" field indicates wireless connection. This contains comprehensive information, including the MAC address, driver status, and the device being used. communication protocol.
Another source of data is the DirectX diagnostic tool, which is called by the command dxdiagAlthough this tool is primarily designed for testing video cards and sound, you can also find information about network adapters in the "Network" tab (or in a saved report). This is useful if standard methods for some reason don't display complete information.
⚠️ Attention: The data in the "System Information" section may be delayed after installing new hardware. If you've just replaced your WiFi module, reboot your system before checking.
Advantage of using msinfo32 The ability to save a complete system report in text format allows you to analyze the configuration on another computer or send the file to a technician for remote diagnostics. The report will include the exact path to the driver file and its version, which is invaluable when detecting software conflicts.
Third-party utilities for detailed diagnostics
Standard Windows tools are sometimes insufficient for a thorough analysis of a wireless module's characteristics. Third-party utilities can read chipset registers directly, providing data on supported standards, channel width, and even device temperature. Such programs are often used by network engineers and enthusiasts.
One of the most popular utilities is AIDA64This comprehensive diagnostic tool displays detailed information about every computer component. Under "Network" -> "Windows Network," you can see not only the adapter name but also its current connection speed, bandwidth utilization, and technical details like MTU.
For users interested in wireless networks, the program will be an excellent choice. WiFi Analyzer or specialized utilities from chip manufacturers, for example, Intel PROSetThey allow you to evaluate the signal quality, noise level and select the optimal channel for connection based on the capabilities of your hardware.
| Name of the utility | License type | Key function | Complexity |
|---|---|---|---|
| AIDA64 Extreme | Paid (Trial) | Full system diagnostics | Average |
| HWiNFO | Free | Monitoring sensors and hardware | High |
| WiFi Analyzer | Free | Analysis of the broadcast environment | Low |
| DriverPack Solution | Free | Finding and installing drivers | Low |
Using third-party software can also help you check whether your adapter is virtual. Some emulators or antivirus programs create virtual network interfaces, which can confuse the user. Professional utilities clearly distinguish between physical and virtual hardware, displaying the Vendor ID and Device ID.
What are Vendor ID and Device ID?
These are unique hexadecimal codes assigned by the hardware manufacturer. The Vendor ID identifies the company (e.g., 8086 for Intel), and the Device ID identifies the specific device model. These codes are used by the system to search the database for the appropriate driver, even if the device name is displayed incorrectly.
Checking network adapters in Linux and macOS
Users of Unix-based operating systems also often encounter the need to identify network equipment. Linux offers several powerful console utilities that provide information not available in the graphical interface. The main tool here is the command lspci for internal cards or lsusb for external USB whistles.
After executing the command lspci | grep -i network or lspci | grep -i wireless, you'll get a list of all network controllers connected via the PCI bus. The output will indicate the exact chipset model. For more detailed information, you can use the command lshw -C network, which will show the logical name of the interface (for example, wlan0) and the driver status.
In macOS, the process is even simpler thanks to a unified hardware base. Click the Apple icon in the upper left corner, select "About This Mac," then "System Report." Under "Network" -> "Wi-Fi," you'll see complete interface information, including the card type (e.g., AirPort Extreme) and the current operating mode.
- 🐧 On Linux use
lspcioriwconfigto view adapters. - 🍏 On macOS, go to "System Report" via the Apple menu.
- 📡 Check the driver (kernel module) status in Linux via
lsmod. - 🔗 Make sure the interface is not in "RF-kill" (blocked) state.
It's important to note that in Linux, the interface name may differ from the hardware name. For example, an adapter may be called wlp2s0, which indicates its location on the PCI bus. Understanding this naming logic helps you navigate system configuration files, such as /etc/network/interfaces or NetworkManager settings.
Manufacturer and serial number correspondence table
It's common for a laptop's case or documentation to list one brand (for example, HP or Dell), but the module inside is from a different manufacturer (Intel or Qualcomm). This is common practice among OEM assemblers. To determine the manufacturer of the chip, you can use the first characters of the MAC address or the PCI registry data.
A MAC address consists of 12 hexadecimal digits. The first six (OUI – Organizationally Unique Identifier) are assigned to a specific manufacturer. Knowing this prefix allows you to accurately identify the hardware vendor, even if the driver installed is a standard Microsoft one and doesn't provide complete model information.
| MAC Prefix (OUI) | Manufacturer | Typical devices | Popular series |
|---|---|---|---|
| 00-1E-10 | Intel Corporate | Laptops, PCs | Centriino, Ultimate-N |
| 00-50-F2 | Realtek Semiconductor | USB adapters, boards | RTL8188, RTL8812 |
| 00-24-8C | Qualcomm Atheros | Routers, cards | AR9285, QCA6174 |
| 00-1A-2B | Broadcom Corporation | MacBook, servers | BCM43xx |
Using the MAC address for identification is a reliable method when other methods fail. There are numerous online OUI databases where you can enter the first six characters of the address to retrieve the manufacturer's name. This is especially useful for older devices or exotic hardware for which drivers are difficult to find.
☑️ Check before purchasing a new adapter
Common problems and their solutions
Even knowing how to check the name of a WiFi adapter, users may encounter a situation where the device is displayed incorrectly. For example, Device Manager may show "Standard 802.11n Wireless LAN Adapter." This means the system is using a generic Microsoft driver, which doesn't utilize its full potential. hardware.
In such cases, you need to find the hardware ID. In the device properties, on the "Details" tab, select "Hardware ID" from the list. The copied string (for example, PCI\VEN_8086&DEV_08B1) will allow you to find the exact model on specialized websites. These codes can be used to determine, for example, that you have an Intel Dual Band Wireless-AC 7260.
Another common issue is the adapter disappearing from the list after a Windows update or a power failure. This is often resolved by completely resetting the network statistics or restarting the WLAN AutoConfig service. If the adapter is physically missing (not visible even in hidden devices), it's worth checking for loose contact in the M.2 slot, especially on laptops that have been subjected to impact.
⚠️ Attention: Settings interfaces and menu item locations may vary depending on the operating system version (Windows 10, 11) and the installed driver version. If you don't find the item you're looking for, use the system settings search.
Understanding how network equipment works and being able to identify it is a basic skill for any competent PC user. This allows you not only to quickly resolve internet issues but also to choose the right upgrades, ensuring high speed and a stable connection in the future. Don't neglect to check the model before installing drivers from questionable sources.
Why does Device Manager show "Unknown Device" instead of WiFi?
This happens when the operating system lacks drivers for the installed hardware. Windows sees that something is connected to the PCI or USB bus but doesn't know how to handle it. In this case, the system assigns a temporary ID to the device. There's only one solution: find the driver by hardware ID (VEN and DEV codes) on the official website of the laptop or chipset manufacturer and install it manually.
Can the adapter name change after updating drivers?
Yes, this is possible. When installing the generic Microsoft driver, the device may be called "Standard Wireless Adapter," but after installing the proprietary software from Intel or Realtek, it will be renamed to a specific model (for example, "Intel(R) Wi-Fi 6 AX201"). This is normal behavior and indicates that the specific software was installed correctly.
How do I know if my adapter supports 5GHz?
The model name is the best indicator. If the name includes the words "Dual Band," "AC," "AX," or "5G," support for the 5 GHz frequency is guaranteed. Older adapters labeled "802.11b/g/n" (without the "Dual Band" prefix) often only work at 2.4 GHz. It's always best to check the exact specifications on the manufacturer's website using the full model name.
Does the driver version affect the adapter name in the system?
The driver version directly affects how the device is presented to the system. Old drivers may display the device name incorrectly or hide advanced chipset features. Updating to the latest version from the manufacturer's website often reveals the correct device name and adds new control features to the configuration panel.