When Wi-Fi on a computer or laptop starts acting up—it connects intermittently, or the speed drops to zero—the first thing that comes to mind is updating or reinstalling the network adapter driver. But how can you find out its exact name if the system only displays the generic "Wireless Adapter" or an unknown device? This problem is familiar to many, especially after reinstalling Windows or buying used equipment where the manufacturer didn't provide documentation.
In this article we will look at 5 reliable ways Identify your Wi-Fi adapter model and current driver—from standard operating system tools to specialized utilities. You'll learn how to find information in Windows 10/11, Linux (including Ubuntu And Debian), as well as on macOS, where the logic for working with drivers differs. We will pay special attention to cases where the adapter is not recognized by the system or is displayed with an exclamation mark in Device Manager.
Important: If you plan to download drivers from the manufacturer's website, knowing the exact adapter model is critical. An error in one digit (for example, Intel Wi-Fi 6 AX200 instead of AX201) may lead to incompatibility or even loss of network after installationTherefore, check the data using at least two methods from this instruction.
Method 1: Device Manager in Windows
The most obvious and fastest method for users Windows - use built-in device ManagerIt displays all connected components, including network adapters, even if they're not working properly. Here's how to use it:
- Press the key combination
Win + Xand selectdevice Manager. - Expand the section
Network adapters. - Find the device with the words Wireless, Wi-Fi, 802.11 or brand name (Intel, Qualcomm Atheros, Realtek and others).
If the adapter is displayed as Unknown device or with a yellow triangle, right-click on it → Properties → tab IntelligenceFrom the drop-down menu, select Equipment IDIn the field Meaning lines like this will appear PCI\VEN_8086&DEV_2723These codes will help identify the device through online databases (more on this in the next section).
⚠️ Attention: In some laptops (especially Dell or HP) The Wi-Fi adapter may be integrated into the motherboard and appear as part of the chipset. In this case, look for models marked CNVi (For example, Intel Wireless-AC 9560 CNVi).
Adapter name (must include brand and model)|No exclamation marks next to the device|VEN and DEV codes in the properties (if the adapter is not recognized)|Driver version on the Driver tab-->
Method 2: Command Prompt and PowerShell
If the graphical interface does not show the required information (for example, the adapter is hidden or the system is frozen), cmdlets will come to the rescue. Windows There are several useful commands for diagnosing network devices.
Open Command line (Win + R → enter cmd) or PowerShell as administrator and run:
wmic nic get name, manufacturer, description
This command will list all network adapters with their manufacturer (manufacturer) and descriptions. Look for lines mentioning Wireless or Wi-Fi.
For more detailed information, please use:
netsh wlan show drivers
This command will show driver version, supported standards (802.11n/ac/ax) and even the type of radio (FCC, ETSI). Useful if you need to know if the adapter supports Wi-Fi 6 or MU-MIMO.
- 🔍 For advanced: Team
get-netadapter | select Name, InterfaceDescription, DriverVersionV PowerShell will display the driver version and adapter description in one window. - 📋 Advice: Copy the command output to a text file (right-click →
Select all→Enter), so as not to lose data when closing the window.
Device Manager|Command Prompt|Third-Party Utilities (AIDA64, HWiNFO)|I don't know what this is-->
3. Method: Identification by VEN and DEV codes
If the adapter is displayed in the system as Unknown device, but there are codes in the properties VEN_XXXX And DEV_XXXX (For example, VEN_168C&DEV_003E), they can be used to find the exact model. These codes are unique to each device and are assigned by the manufacturer.
Go to the website PCI Database (For example, PCILookup) or Device Hunt, enter the codes in the search bar. The system will display the manufacturer (Vendor) and the device model (Device). For example, the code VEN_8086 always matches Intel, A VEN_10EC — Realtek.
| Code VEN (Producer) | Manufacturer | Example of a model |
|---|---|---|
8086 |
Intel | Wi-Fi 6 AX200, Wireless-AC 9260 |
10EC |
Realtek | RTL8821CE, RTL8188EE |
168C |
Qualcomm Atheros | QCA9377, AR9485WB-EG |
14E4 |
Broadcom | BCM4352, BCM43142 |
⚠️ Attention: Some laptops (especially Lenovo or Asus) use proprietary Wi-Fi modules with non-standard codes. In this case, disassembling the device for a visual inspection of the adapter may be necessary.
How to find VEN/DEV codes in Linux?
In the terminal, run the command lspci -nn | grep NetworkThe output will look like this:
03:00.0 Network controller [0280]: Intel Corporation Wi-Fi 6 AX200 [8086:2723] (rev 1a)
Here 8086 — this is VEN, and 2723 — DEV.
4. Method: Third-party diagnostic utilities
If standard methods fail, specialized programs can help. They will not only show the adapter model but also provide additional information: temperature, supported frequencies, firmware version, and even nearby Wi-Fi networks.
- 🛠️ AIDA64 (paid, trial available): Section
Devices → PCI Devices. Shows detailed information about all components, including Wi-Fi And Bluetooth modules. - 🔧 HWiNFO (free): Tab
Network→Wireless Adapter. It even displays hidden parameters, such as the maximum connection speed. - 📡 WirelessNetView (free, from NirSoft): Specializes in Wi-Fi adapters, shows MAC address, channel And signal level.
- 🖥️ Speccy (free): Section
Net. User-friendly interface for beginners.
The advantage of these programs is that they work even if the adapter is not recognized by the system or the driver is damaged. For example, HWiNFO can determine the model by hardware ID, even if in Device Manager an error is displayed.
5. Method: Physical inspection of the adapter (for PCs and disassemblable laptops)
If software methods don't work, the only other option is to visually inspect the Wi-Fi module. This is especially true for desktop PCs (where the adapter is connected to a slot). PCIe or M.2) and some laptops with removable modules.
In laptops, the Wi-Fi adapter is usually located under a cover on the back panel (next to the cooler or battery) and connected to a connector M.2 2230 or NGFFIt should have a sticker with the model, for example:
- Intel Wireless-AC 9560
- Broadcom BCM94360CS
- Realtek RTL8822BE
In desktop PCs, the adapter may be:
- 🖥️ Built into the motherboard (look for the markings next to the antenna connectors).
- 🔌 Connected to the slot PCIe x1 (separate board with antennas).
- 📶 External USB adapter (the model is usually indicated on the case).
⚠️ Attention: When disassembling your laptop, disconnect the battery and power supply! Static electricity can damage the Wi-Fi module. If you are unsure, contact a service center.
Method 6: Identifying the driver in Linux and macOS
For users Linux And macOS have their own tools for identifying Wi-Fi adapters. Unlike Windows, the terminal is often used here.
For Linux (Ubuntu, Debian, Fedora, etc.):
Open Terminal (Ctrl + Alt + T) and run:
lspci -v | grep -i network -A 12
Or for USB adapters:
lsusb
Look for lines with Network controller or Wireless. For example:
03:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)
To find out which driver is being used, enter:
lshw -c network
In the section configuration the driver will be specified (for example, driver=iwlwifi for adapters Intel).
For macOS:
Open Terminal (Applications → Utilities) and run:
networksetup -listallhardwareports
Search section Wi-Fi or AirPortThe adapter model can be found through:
system_profiler SPNetworkDataType
IN macOS The drivers are built into the system, so there's no need to install them separately. However, knowing the adapter model will help you check compatibility with the latest versions of macOS (for example, older adapters Broadcom may not support Monterey or Ventura).
Common problems and solutions
Even after identifying the adapter model, users still encounter common errors. Let's look at the most common ones:
- 🔄 The adapter is not recognized after a Windows update: This is often caused by a driver conflict. Solution: Roll back the driver via
device Manager(tabDriver→Roll back) or uninstall it completely and then restart your PC - the system will install the basic driver automatically. - 🚫 Adapter properties cannot be accessed: If you click on the device in
Dispatcheran error appears, try running it as administrator (right-click onDevice Manager→Run as administrator). - 🔌 Wi-Fi adapter disappeared after installing the driver: This means the driver is incompatible. Please uninstall it via
Control Panel → Programs and Features, then download the correct version from the laptop manufacturer's website (not the adapter's!). For example, for HP Pavilion The driver must be from the website HP, and not Intel.
If the adapter still does not work, check:
- Is it included in BIOS/UEFI (chapter
Advanced → Onboard Devices). - Is there any physical damage (for example, antennas in a laptop coming loose).
- Is it conflicting with another network device (disable it) Bluetooth or the second Ethernet- adapter for the duration of the test).
⚠️ Attention: On some laptops (eg. Lenovo Legion or MSI) The Wi-Fi adapter can be disabled by pressing the key Fn + F2 or a separate hardware switch. Check this before diagnosing the drivers.
FAQ: Answers to Frequently Asked Questions
Is it possible to find out the model of a Wi-Fi adapter without disassembling the laptop?
Yes, in 90% of cases software methods are sufficient: device Manager, command line or utilities like HWiNFODisassembly is only required if the adapter is not fully recognized by the system (for example, after a BIOS reset or physical damage).
How do I know which driver I need for my adapter? Realtek RTL8821CE?
Go to the official website Realtek, find the section Downloads → Wireless LAN. For RTL8821CE A driver marked with this symbol will do 8821C or 8821CE. Please pay attention to the bit depth of the system (x64 or x86). For Linux look for packages with the suffix -dkms in your distribution's repositories.
After updating the driver, Wi-Fi disappeared. What should I do?
The new driver is probably incompatible. Go to device Manager, right-click on the adapter → Properties → Driver → Roll backIf the button is inactive, uninstall the driver completely, then restart your PC—the system will install the previous working version. Also, check if the adapter is disabled in BIOS.
How do I check if my Wi-Fi adapter is working at maximum speed?
Use the utility Wi-Fi Analyzer (Android) or NetSpot (Windows/macOS) for network analysis. If the adapter supports Wi-Fi 6 (802.11ax), but the speed does not exceed 300 Mbps, check:
- Router settings (the mode must be enabled)
802.11axor802.11ac). - Channel width (should be
80 MHzor160 MHzFor Wi-Fi 6). - Driver version (update to the latest from the manufacturer's website).
Where can I download the driver if it's not available on the manufacturer's website?
If the driver is not available on the website Intel, Realtek or Qualcomm, try:
- Download from the manufacturer's website laptop (For example, Dell, Asus). Search by device model, not adapter.
- Use driver databases: DriverPack Solution (be careful - may install unnecessary software) or SlimDrivers.
- Take the driver from another PC with the same adapter model (copy the files from
C:\Windows\System32\drivers).
For Linux Look for packages in the official repositories or on GitHub (for example, repositories lwfinger For Realtek).