Finding Wi-Fi on a Laptop: From Basic Settings to Solving Hidden Problems

Search for available networks Wi-Fi On a laptop, connecting to a network seems like a simple task—until the network list is empty, and the connection icon in the system tray flashes a cross or exclamation point. Causes can range from a simple disabled adapter to driver conflicts or hardware malfunctions. In this article, we'll explore all possible scenarios: from checking obvious settings to diagnosing hidden problems that aren't immediately obvious.

The peculiarity of laptops is that they Wi-Fi modules often integrated into the motherboard or connected via an interface M.2/PCIe, and their operation depends on the correct configuration of the BIOS, operating system, and drivers. If you find that your laptop is not detecting networks that were previously visible, or is not responding to the Wi-Fi button at all, don't rush to take it to a service center. In 80% of cases, the problem can be resolved independently in 10-30 minutes.

The material is relevant for all modern operating systems: Windows 10/11, macOS Ventura/Sonoma and distributions Linux (Ubuntu, Mint, Fedora). We will separately consider the nuances for hybrid devices (2-in-1) and laptops with discrete Wi-Fi modules (for example, Intel AX210 or Qualcomm Atheros).

1. Checking that Wi-Fi is physically enabled

The first thing to do is to make sure that Wi-Fi adapter Physically turned on. Many laptops have the following features for this:

  • 🔄 Hardware switch - a small button or slider on the body (often found on models Lenovo ThinkPad, Dell Latitude or old ones HP EliteBook).
  • ⌨️ Hotkeys - combinations of the type Fn + F2, Fn + F12 or a separate key with an antenna icon (on ASUS, Acer, MSI).
  • 🖱️ Software switch in BIOS/UEFI - it's rare, but it happens that Wi-Fi is disabled at the firmware level (relevant after resetting the settings or updating the BIOS).

For example, on laptops Lenovo IdeaPad Wi-Fi can be blocked by a combination Fn + F7, and on HP PavilionFn + F12If the keys do not work, check if the driver is installed for HotKey-utilities (for example, Lenovo Hotkey Driver or HP System Event Utility). Without it, the function keys may not work.

⚠️ Attention: On some models (eg, Dell XPS 13 2022–2026) the Wi-Fi hardware switch is hidden under the case cover next to the connector USB-CIf the laptop has been recently disassembled, make sure the switch is not moved to the position OFF.

If physically turning it on doesn't help, proceed to checking at the operating system level.

📊 What is the brand of your laptop?
Lenovo
HP
Dell
ASUS
Acer
Apple
Another

2. Diagnostics in Windows: adapter, drivers, services

IN Windows 10/11 Wi-Fi problems are most often related to a disabled adapter, outdated drivers, or a service failure. WLAN AutoConfigLet's go step by step:

2.1. Checking the adapter status

Open device Manager (Win + X → Device Manager) and find the section Network adaptersYour Wi-Fi module should be displayed in the list, for example:

  • Intel(R) Wi-Fi 6 AX200
  • Qualcomm Atheros QCA61x4A
  • Realtek RTL8822CE

If there is next to the name down arrow (↓) — the adapter is disabled. Right-click and select Activate the device.

2.2. Updating or reinstalling drivers

Outdated drivers are a common reason why a laptop can't connect to the network. Update them:

  1. IN Device Manager Right-click on the adapter → Update driverAutomatic search.
  2. If Windows does not find updates, download the driver from the laptop manufacturer's website (section Support or Drivers).
  3. For chips Intel or Qualcomm you can use utilities Intel Driver & Support Assistant or Qualcomm Driver Update Tool.

Critical error: If Device Manager displays "Unidentified Device" with error code 43 or 28, this indicates a hardware failure in the Wi-Fi module or a conflict with the PCIe bus. In this case, diagnostics at a service center are required.

Error code in Device Manager Possible cause Solution
Code 10 The device does not start Reinstall the driver, check the module's power supply
Code 28 No drivers Install the driver manually from the manufacturer's website
Code 43 Hardware failure Checking the module contacts, test on another laptop
Code 45 The device was manually disabled Enable in Device Manager or BIOS

2.3. Checking the WLAN AutoConfig service

If the adapter is enabled but networks are still not showing up, make sure the WLAN AutoConfig service is running:

  1. Click Win + R, enter services.msc.
  2. Find a service WLAN AutoConfig (or WLAN Automatic Configuration Service).
  3. Make sure the status is In progress, and the launch type is Automatically.
⚠️ Attention: On some Windows 11 builds, after updates, the service WLAN AutoConfig may conflict with Geolocation serviceIf Wi-Fi disappears after waking up from sleep, turn off geolocation in Settings → Privacy & Security → App Permissions → Location.

☑️ Wi-Fi Diagnostics in Windows

Completed: 0 / 4

3. macOS Features: From AirPort to Wi-Fi 6E

On laptops Apple (MacBook Air/Pro) Wi-Fi problems are less common, but their diagnosis has nuances. macOS Ventura and newer:

3.1 Checking the Wi-Fi menu

Click on the Wi-Fi icon in the upper right corner. If it gray color or absent altogether:

  • 🔧 Restart your MacBook (this sometimes helps even with hardware failures).
  • 🔍 Press Option (Alt) and click on the Wi-Fi icon - an extended menu will open with connection information (including PHY Mode, BSSID, Channel).
  • 📡 If the menu says Wi-Fi: Not connected, but the networks are not displayed - try creating a new one network location V System Preferences → Network.

3.2. Resetting the Wi-Fi module

To reset Wi-Fi settings in macOS:

  1. Open Terminal (Command + Space → enter Terminal).
  2. Execute the commands in order:
    sudo ifconfig en0 down
    

    sudo ifconfig en0 up

    (replace en0 on your interface, if it is different - look in ifconfig).

  3. Restart your MacBook.

If the problem persists, reset NVRAM (non-volatile memory where Wi-Fi settings are stored):

  1. Turn off your MacBook.
  2. Turn on and hold down immediately Command + Option + P + R for 20 seconds.
  3. Release the keys after the second beep (on models with Apple Silicon there will be no signal - just wait 20 seconds).
⚠️ Attention: On MacBooks with chips M1/M2/M3 Resetting the NVRAM doesn't always help with Wi-Fi 6E (802.11ax) issues. In this case, update macOS to the latest version or roll back to a stable build via macOS Recovery (Command + R when loading).

4. Linux: Commands for Diagnosing and Solving Problems

IN Linux (Ubuntu, Mint, Fedora) Wi-Fi network search is performed through utilities iw, nmcli or graphical interfaces like NetworkManagerIf networks are not displayed, follow these steps:

4.1. Checking adapter availability

Open terminal and enter:

iwconfig

The output should show your Wi-Fi interface (usually wlan0, wlp3s0 or similar). If it is not there:

  • 🔌 Check if the adapter is disabled by the command rfkill list (if there is in the output Soft blocked: yes, unlock with the command rfkill unblock wifi).
  • 🔧 Make sure the Wi-Fi kernel module is loaded: lsmod | grep iwlwifi (for chips Intel) or lsmod | grep ath (For Qualcomm Atheros).

4.2. Scanning networks manually

If the GUI doesn't show networks, try scanning them in the terminal:

sudo iwlist wlan0 scan | grep ESSID

If the command returns an empty list, the problem may be:

  • 📡 Regional settings — Some countries restrict frequency ranges (for example, channels 12–14 in 2.4 GHz). Check your settings: sudo iw reg getIf the region is incorrect, set the correct one: sudo iw reg set RU (for Russia).
  • 🔋 Energy saving — Linux can disable Wi-Fi to save battery. Disable this: iwconfig wlan0 power off.

4.3. Reinstalling drivers

For chips Intel (most common in laptops) update drivers:

sudo apt update

sudo apt install firmware-iwlwifi

For Realtek or Broadcom Manual installation of firmware from the manufacturer's website may be required.

5. Hidden networks and manual connection

Sometimes the laptop does not show the network not because of a malfunction, but because they hidden (they don't broadcast their SSID). To connect to such a network:

5.1. In Windows

  1. Open Settings → Network and Internet → Wi-Fi.
  2. Click Manage known networks → Add new network.
  3. Enter the network name (SSID), security type (WPA2-Personal or WPA3) and password.

5.2. In macOS

  1. Click on the Wi-Fi icon in the menu → Join another network.
  2. Enter Network name, select Security and enter the password.

5.3. In Linux

Use nmcli:

nmcli dev wifi connect "HiddenNetworkName" password "your_password"

If you don't know the exact name of the network, but you're sure it exists, try scanning the air with a utility. airodump-ng (included in the package) aircrack-ng):

sudo airmon-ng start wlan0

sudo airodump-ng wlan0mon

This will show all networks in range, including hidden ones (in the column ESSID it will be empty, but BSSID will be displayed).

⚠️ Attention: Connection to hidden networks may be blocked by security policies of corporate routers (for example, Cisco Meraki or Ubiquiti UniFi). In this case, you will need permission from the network administrator.

6. Hardware problems: how to diagnose

If software methods do not help, the problem may be in hardware:

  • 🔌 Disconnected antenna cable — a common problem after disassembling a laptop. The Wi-Fi antennas are connected to the module with thin coaxial cables (U.FL or IPEX), which are easily damaged.
  • 🔥 Module overheating — If Wi-Fi disappears after 10–15 minutes of operation, the thermal paste on the chip may need to be replaced or the cooling system may need to be checked.
  • Malfunction of the module itself — if the laptop does not see the network even in the BIOS or after reinstalling the OS, the module may have failed (for example, after a power surge).

For diagnostics:

  1. Connect external USB Wi-Fi adapter (For example, TP-Link TL-WN725N). If it works, the problem is in the internal module.
  2. Check the laptop on another one router or in another location (perhaps your router operates in the range 5 GHz, and the laptop only supports 2.4 GHz).
  3. Launch Linux Live CD (For example, Ubuntu). If Wi-Fi doesn't work there either, it's a hardware problem.

If you suspect a module is faulty, you can replace it yourself (on most laptops it is removable and secured with a single screw). The main thing is to choose a compatible model. For example, for Lenovo ThinkPad T14 will do Intel AX200 or AX210, and for MacBook Pro 2015–2017 — only original modules Broadcom BCM94360.

How to check Wi-Fi module compatibility?

Compare PCIe ID your current module (you can find out in the Device Manager or through the command lspci -nn | grep Network in Linux) with the ID of the new module. They must match by the first 4 characters (for example, 8086:2723 for Intel AX200).

7. Router Problems: Why Your Laptop Can't See the Network

Sometimes the problem is not in the laptop, but in router settings. Check:

  • 📶 Broadcast range - if the router only works in 5 GHz, and the laptop only supports 2.4 GHz (relevant for older models), the network will not be visible. In the router settings (192.168.1.1 or 192.168.0.1) turn on both ranges.
  • 🔒 MAC address filtering - if it is enabled in the router MAC filter, the laptop won't be able to connect, even if the network is visible. Add the laptop's MAC address to the list of allowed addresses (you can find the MAC address through ipconfig /all in Windows or ifconfig (in Linux/macOS).
  • 📡 Signal strength - if the router is set to minimum power (Tx Power), the laptop may not be able to connect to the network at a distance. Increase the power in the settings (usually the parameter Transmit Power in the section Wireless).

Also make sure that the router is not in the "Secure Mode" mode. 802.11r (Fast Roaming) - some laptops (especially those with chips) Realtek) do not support it correctly.

⚠️ Attention: If you use mesh system (For example, TP-Link Deco or Google Nest Wi-Fi), make sure the laptop is connected to the main node, not the satellite. Some mesh systems hide satellite SSIDs to ensure seamless roaming, which can confuse devices.

8. Alternative connection methods if Wi-Fi doesn't work

If the Wi-Fi problem persists, try temporarily connecting to the internet using other methods:

  • 🔌 Ethernet — via adapter USB-to-Ethernet (if the laptop does not have an RJ-45 port).
  • 📱 USB tethering - connect your laptop to your smartphone via USB and turn it on Modem mode (on Android or iPhone).
  • 📶 4G/5G modem — USB modems (Huawei E3372, ZTE MF833V) or built-in SIM cards (on laptops with support LTE, For example, Dell Latitude 7424).
  • 🔄 MoCA adapter - if you have a coaxial cable (from the TV), you can use adapters MoCA 2.5 for internet transmission.

For a permanent solution to the problem, consider:

  • 🛠️ Replacement of the Wi-Fi module to a more modern one (for example, Intel AX210 with support Wi-Fi 6E).
  • 📡 Installation of an external antenna - some laptops (for example, MSI GS66) have connectors for connecting external antennas.
  • 🔧 Using Powerline adapters — transmitting the Internet via electrical wiring (suitable if the router is far away).

FAQ: Frequently Asked Questions

My laptop sees networks but won't connect—what should I do?

If networks are displayed, but the connection fails with an error "Unable to connect" or "Limited":

  1. Delete the network in settings and reconnect.
  2. Check if the password is correct (sometimes the keyboard layout gets confused).
  3. Reset TCP/IP settings: In Windows, run the following command from the command prompt (cmd as administrator):
    netsh int ip reset
    

    netsh winsock reset

  4. If used WPA3, try switching the router to WPA2 (some older adapters do not support WPA3).
Wi-Fi works, but the speed is very slow - what's wrong?

Reasons for low speed:

  • 📶 Congested channel - use the utility Wi-Fi Analyzer (Android) or inSSIDer (Windows) to find a free channel on the router.
  • 🔌 Restriction from the provider — check the tariff.
  • 🖥️ Adapter driver - some driver versions Realtek limit the speed to 54 Mbps. Update the driver from the manufacturer's website.
  • 📡 Long distance to the router - if the signal is weak (1-2 divisions), use repeater or Mesh system.
The laptop only doesn't see one network, but it sees the others - why?

Possible reasons:

  • 🔒 Hidden SSID — the network does not broadcast its name (see section 5).
  • 📶 Incompatible standard - if the router is working in 802.11ax (Wi-Fi 6), and the laptop adapter only supports 802.11ac, the connection may not be established.
  • 🔄 MAC filtering — check your router settings.
  • 📡 Incorrect channel - if the router uses the channel 165 V 5 GHz, but the adapter does not support it.

Solution: Connect to this network manually (see section 5) or change your router settings (for example, enable SSID broadcast).

Wi-Fi stopped working after a Windows update – how do I fix it?

Windows updates often break drivers. Try this:

  1. Roll back the driver: Device Manager Right-click on the adapter → Properties → Driver → Roll Back Driver.
  2. Remove the driver completely and install it from the laptop manufacturer's website (not via Windows Update!).
  3. If the problem appears after a major update (for example, with Windows 10 on 11), check the compatibility of your Wi-Fi module with the new OS on the website Microsoft.
  4. As a last resort, roll back to the previous version of Windows via Settings → System → Recovery.
Is it possible to connect a laptop to Wi-Fi without a built-in adapter?

Yes, there are several ways:

  • 🔌 USB Wi-Fi adapter — the simplest solution (for example, TP-Link TL-WN823N or ASUS USB-AC56).
  • 📱 Smartphone in hotspot mode — connect your laptop to your phone via Wi-Fi or USB.
  • 🖥️ Ethernet over USB - If you have wired internet, use an adapter USB-to-Ethernet.
  • 📡 PCIe Wi-Fi card - for desktop PCs, but some laptops (for example, Dell Precision) support the installation of additional cards in the slot ExpressCard or PCMCIA.

For continuous use, we recommend a USB adapter with support Wi-Fi 6 (For example, TP-Link Archer TX3000E).