Have you bought a used laptop or suddenly found that you can't connect to a wireless network? The first thing that comes to mind is Checking for the presence of a Wi-Fi adapterBut how can you do this if you don't have the technical documentation on hand, and the seller can't confirm the module's availability? This problem is familiar to many: according to user surveys, about 18% of laptop owners Have you ever encountered a situation where your device doesn't see the network, even though everything worked before?
In this article we will look at 5 reliable waysHow to check if a laptop has a Wi-Fi adapter Windows 10/11, macOS or Linux, and what to do if the module is missing or not detected by the system. You will learn how to recognize built-in And external Adapters, which commands can help with diagnostics, and why sometimes even a new laptop may not see the network.
Spoiler: in 90% of cases The problem isn't a missing adapter, but rather disabled settings or outdated drivers. But to be 100% sure, let's take it one step at a time.
1. Visual inspection of the laptop: where to look for the Wi-Fi adapter
Before diving into system settings, inspect the laptop case. Manufacturers often place wireless communication indicators or even stickers with a logo Wi-Fi CertifiedHere's what to pay attention to:
🔹 Wi-Fi indicator — a small LED (usually blue or orange) next to the keyboard or on the front panel. It lights up when the wireless module is turned on. On models Lenovo ThinkPad, Dell Latitude or HP EliteBook The indicator can be combined with the on/off button.
🔹 Stickers on the body — look for logos Wi-Fi 6, 802.11ac or Intel Wireless on the bottom cover or next to the touchpad. On budget laptops (for example, Acer Aspire or ASUS Vivobook) such stickers may be missing, but this does not mean that the module is missing.
🔹 Antenna wires — If you're ready to remove the back cover (carefully!), pay attention to the two thin cables running from the motherboard to the top of the screen. They're connected to M.2 slot (for modern adapters) or mini-PCIe (for older models). The absence of these cables with 99% probability means that the Wi-Fi module is physically absent.
⚠️ Attention: If you have never disassembled a laptop, do not do it without experience. Modern devices (especially Ultrabook) have fragile cables and are easily damaged. It's better to use the other methods in this article.
2. Checking via Device Manager (Windows)
The fastest way to find out if your laptop has a Wi-Fi adapter is to look in device ManagerThis method works on all versions of Windows starting from Windows 7.
🔹 How to open Device Manager:
- 🖱️ Click
Win + Xand select "Device Manager"; - 🔍 In the Windows search bar, type
devmgmt.mscand pressEnter; - 📋 In the control panel:
Start → Control Panel → System and Security → Device Manager.
🔹 What to look for in the Dispatcher:
Expand the tab Network AdaptersAll network devices should be displayed here, including:
- 📶 Wireless adapters — usually contain words Wireless, Wi-Fi, 802.11 or chip names (Intel AX200, Qualcomm Atheros, Broadcom);
- 🌐 Ethernet adapters — for wired connection (not to be confused with Wi-Fi!);
- ⚠️ Unidentified devices — if there is a yellow triangle next to the name, this means that the driver is not installed.
📌 Examples of Wi-Fi adapter names:
| Manufacturer | Adapter model | Connection type |
|---|---|---|
| Intel | Wi-Fi 6 AX200 | M.2 (NGFF) |
| Qualcomm | Atheros QCA6174 | mini-PCIe |
| Broadcom | BCM4352 | Soldered into the board |
| Realtek | RTL8821CE | M.2 |
| Medatek | MT7921 | M.2 (Wi-Fi 6) |
⚠️ Attention: If there are no wireless adapters in the list, this may mean:
- The module is physically missing;
- The adapter is disabled in BIOS;
- The driver is not installed or is damaged;
- The device is turned off by a button on the case (on older laptops).
Check the BIOS for disabled Wi-Fi|Update drivers via Windows Update|Try connecting an external USB adapter for testing|Inspect the laptop for a hardware Wi-Fi button-->
3. Commands for checking Wi-Fi in Windows (CMD and PowerShell)
If you prefer to work with the command line, there are several useful commands that will show the presence of network adapters and their status.
🔹 Team ipconfig /all (for CMD):
Open Command Prompt (Win + R → cmd → Enter) and enter:
ipconfig /all
Search section Wireless LAN Adapter (or Wireless LAN adapter). If it is not there, there is no adapter or it is disabled. If there is, but the status Media disconnected, check the drivers or the Wi-Fi button on the case.
🔹 Team netsh wlan show drivers:
This command will show detailed information about the Wi-Fi driver:
netsh wlan show drivers
Please pay attention to the lines:
- Radio type — it should be
802.11n/ac/ax(depending on the standard); - Hosted network support —
Yes(if the laptop can distribute Wi-Fi).
🔹 PowerShell command to list adapters:
Get-NetAdapter | Where-Object {$_.MediaType -eq "Native 802.11"} | Select Name, InterfaceDescription, Status
If the command returns an empty result, there is no Wi-Fi adapter in the system.
4. Checking on macOS: How to find out the model of your Wi-Fi adapter
On laptops MacBook (including models MacBook Air And MacBook Pro) The Wi-Fi adapter is always built into the motherboard, but sometimes it can be disabled by software or damaged. Here's how to check for its presence:
🔹 Via "System Information":
- Click on the logo Apple in the upper left corner;
- Select **"About This Mac" → "System Report";
- Go to the section Network → Wi-Fi.
Here you will see:
- 📋 Interface name (For example,
en0); - 🔧 Chip model (For example, Broadcom BCM43xx or Apple AirPort);
- 📡 Supported standards (802.11a/b/g/n/ac/ax).
🔹 Via the Terminal:
Open Terminal (via Spotlight or Launchpad → Utilities) and enter:
networksetup -listallhardwareports
Search section Wi-Fi or AirPortIf it is not there, the adapter is not detected by the system.
⚠️ Attention: On MacBook older than 2012 (for example, MacBook Pro Mid 2012) The Wi-Fi adapter may fail due to overheating. If the adapter is installed but doesn't have a network connection, try resetting it. SMC (System Management Controller).
How to reset SMC on MacBook?
1. Turn off your MacBook.
2. Press and hold Shift + Control + Option (left side of the keyboard) + power button for 10 seconds.
3. Release the keys and turn on the laptop.
This procedure resets the power settings and may restore Wi-Fi functionality.
5. Testing in Linux (Ubuntu, Mint, Fedora, etc.)
In Linux, checking a Wi-Fi adapter is done through the terminal. Most distributions automatically detect network devices, but sometimes you need to install proprietary drivers (especially for chips). Broadcom).
🔹 Team lspci (for built-in adapters):
lspci | grep -i network
Look for lines with Network controller. Example output:
03:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)
🔹 Team lsusb (for USB adapters):
lsusb
If you are using an external Wi-Fi adapter, it will appear in the list of USB devices.
🔹 Team iwconfig (checking interfaces):
iwconfig
If there is an interface in the output wlan0 or wlp3s0The adapter is recognized by the system. If not, install the drivers:
sudo apt update && sudo apt install firmware-iwlwifi
(For chips Intel. For Broadcom use the package firmware-b43-installer.)
🔹 Check through rfkill (if Wi-Fi is disabled programmatically):
rfkill list
If next to Wireless LAN costs Soft blocked: yes, unlock the adapter:
sudo rfkill unblock wifi
6. What to do if there is no Wi-Fi adapter in the system
If after all the checks it turns out that there is no Wi-Fi adapter in the laptop, you have several options:
🔹 Buy an external USB adapter:
- 💻 Pros: does not require disassembly, suitable for any laptops, price from 500 ₽;
- ⚠️ Cons: takes up a USB port and can stick out and break if not used carefully.
Recommended models:
- 🔥 TP-Link TL-WN823N (Wi-Fi 5, 300 Mbps);
- 🚀 ASUS USB-AX56 (Wi-Fi 6, 1800 Mbps);
- 💰 Tenda U3 (budget option, 150 Mbps).
🔹 Install an internal M.2 or mini-PCIe adapter:
- 🛠️ Pros: does not take up ports, better signal, looks like original;
- ⚠️ Cons: requires disassembling the laptop, you need to select a compatible model.
Before purchasing, please check:
- Motherboard slot type (
M.2 2230ormini-PCIe); - Support for standards (eg.
Wi-Fi 6orWi-Fi 5); - Compatibility with your laptop model (look for information on forums or in the documentation).
🔹 Use your smartphone as a hotspot:
If you need Wi-Fi urgently and you can’t afford to buy an adapter, turn it on Modem mode on Android or Access Point Mode on iPhoneThis is a temporary solution, but it will help you get online.
⚠️ Attention: When purchasing an internal adapter, please pay attention to white list (whitelist) in the BIOS of some laptops (especially Lenovo And HPIf your adapter model isn't listed, your laptop may not boot! Before purchasing, check this with the seller or on specialized forums.
7. Common Mistakes and Myths About Wi-Fi Adapters
When diagnosing Wi-Fi adapters, users often encounter misconceptions. Let's look at the most common ones:
🔴 Myth 1: "If there is no Wi-Fi indicator, then there is no adapter."
✅ Reality: Many modern laptops (for example, Dell XPS or HP Spectre) don't have a separate indicator, but they do have an adapter. Check it through the system!
🔴 Myth 2: "The Wi-Fi adapter can only be enabled through the BIOS."
✅ RealityIn 95% of cases, the adapter is enabled via the OS or a hardware button. It's only disabled in the BIOS on corporate laptops for security reasons.
🔴 Myth 3: "If the adapter is not visible, it is burnt out."
✅ Reality: Most often, the problem lies with the drivers or settings. Try booting into a Linux live CD—if the adapter is detected there, the problem is with Windows.
🔴 Myth 4: "All laptops have Wi-Fi."
✅ Reality: Cheap models (for example, some Acer or Chuwi) may be sold without a Wi-Fi module. Always check the package contents before purchasing.
🔴 Myth 5: "A USB adapter is slower than a built-in one."
✅ Reality: Modern USB adapters (eg. ASUS USB-AX56) support Wi-Fi 6 and can be faster than older built-in modules.
FAQ: Answers to Frequently Asked Questions
My laptop can't detect Wi-Fi networks, but the adapter is listed in Device Manager. What should I do?
Possible reasons:
- The driver is outdated or corrupted. Update it via
Device Manager → Update Driver; - The adapter is disabled by a button on the case (on older laptops Lenovo or Sony VAIO);
- Wi-Fi is disabled in BIOS. Go to BIOS (usually
F2orDelwhen loading) and check the settings; - There are problems with your router. Try connecting to a different network.
How can I find out which Wi-Fi adapter is installed in my laptop if it is not detected?
If the adapter is not displayed in the system:
- 🔍 Look at the laptop model on the sticker (for example, HP Pavilion 15-eg0000) and find the specifications on the manufacturer's website;
- 🛠️ Disassemble the laptop and look at the markings on the module itself (for example,
Intel AX200NGW); - 📋 Use programs like AIDA64 or HWiNFO - They can reveal hidden devices.
Is it possible to install a Wi-Fi adapter in a laptop if it didn't come with one?
Yes, if:
- 🔧 There is a free slot on the motherboard
M.2ormini-PCIe; - 📡 Antenna cables are laid in the case (usually two thin wires to the screen);
- 💻 The laptop BIOS does not block non-original adapters (check the forums).
If there are no antennas, you can buy an adapter with built-in antennas (for example, Intel Wireless-AC 9260), but the signal quality will be worse.
Why doesn't my new laptop have Wi-Fi even though it has an adapter?
Possible reasons:
- 🔄 Your router firmware is outdated. Update it via the web interface (
192.168.1.1or192.168.0.1); - 📶 Incompatibility of standards. If the router only works in wireless mode
802.11n, and the adapter supports802.11ax, try changing your router settings; - ⚡ Power supply issues. On some laptops (for example, ASUS ROG) Wi-Fi turns off when the battery is low. Connect the charger;
- 🛡️ Blocking by antivirus or firewall software. Temporarily disable them to check.
What's the best Wi-Fi adapter to buy for an old laptop?
Depends on the tasks:
- 💼 For the office: TP-Link TL-WN823N (USB, Wi-Fi 5, 300 Mbps) - cheap and cheerful;
- 🎮 For gaming/streaming: ASUS USB-AX56 (USB, Wi-Fi 6, 1800 Mbps) - low ping;
- 🛠️ For upgrade: Intel Wi-Fi 6 AX200 (M.2) - if you are ready to disassemble the laptop;
- 🏠 For weak signal: Alfa AWUS036ACH (USB with external antenna).
For laptops older than 2015, please note compatibility: some older models do not support Wi-Fi 6.