My Laptop's Wi-Fi Has Lost: 7 Ways to Restore Your Internet Connection

Have you turned on your laptop, but the Wi-Fi icon in the system tray has disappeared or is crossed out with a red cross? Or is the network simply unable to find available hotspots, even though the internet is working on your phone? This problem is common among every fifth user, according to StatCounter, 18% of service center calls in 2026 were related to sudden loss of wireless connection. Causes can include both software glitches and hardware malfunctions.

In most cases, you can restore Wi-Fi on your laptop yourself—without calling a technician. In this article, we'll cover the process. 7 proven methods, from the simplest (rebooting the router) to advanced (manually installing drivers). We'll cover the nuances separately. Windows 10/11, macOS And LinuxWe'll also provide a checklist for diagnosing hardware issues. If, after all these steps, Wi-Fi still doesn't work, you'll find a solution at the end of the article. list of symptoms, in which case it is worth taking the laptop to a service center.

1. Basic checks: router, cables, and physical switches

Before digging into your laptop's settings, make sure the problem isn't with the signal source. Start with the most obvious:

  • 🔌 Reboot your routerUnplug it for 30 seconds, then plug it back in. Wait until it boots up completely (the indicators should be steady, not blinking).
  • 📶 Check the indicators on the routerIf the light bulb Wi-Fi If it doesn't light up or blinks orange, the problem is with the router, not the laptop.
  • 🔗 Make sure the internet cable is connectedIf you have PPPoE-connection, check if the cable has come out of the port WAN on the router.
  • 🔄 Try connecting from another deviceIf Wi-Fi isn't working on your phone, it's either your ISP or your router's fault.

If the router is OK, inspect the laptop:

  • ✈️ Hardware Wi-Fi switch. On some models (Lenovo ThinkPad, Dell Latitude, HP EliteBook) There is a physical button or slider to disable wireless modules. It is usually located on the side panel or next to the key. F12.
  • 🔑 Keyboard shortcut. Click Fn + F2 (or another function key with an antenna icon - depends on the model). ASUS this is often Fn + F12, on AcerFn + F3.
📊 What kind of laptop do you have?
Lenovo
HP
Dell
ASUS
Acer
Apple
Another
⚠️ Note: On laptops Apple MacBook (2018 and newer) there is no hardware Wi-Fi switch. Instead, a software-based menu-based switch is used. Control Center → Wi-Fi.

2. Diagnostics in Windows: Network Settings and Drivers

If basic checks do not help, we move on to software diagnostics. Windows 10/11 There are built-in troubleshooting tools:

  1. Run the troubleshooter:
    • Open Settings → Networks & Internet → Status.
    • Click Network troubleshooting.
    • Select Internet connections or Wi-Fi adapter.
  • Check the adapter status:
    • Click Win + R, enter ncpa.cpl and press Enter.
    • Find Wireless network (or Wi-Fi). If the icon is gray, right-click and select Turn on.

    If the adapter is enabled but networks are still not visible, the problem may be with the drivers. Update them:

    • 🔧 Open device Manager (Win + X → Device Manager).
    • 📋 Expand the branch Network adapters.
    • 🔄 Find the device with the name Wireless, Wi-Fi or 802.11 (For example, Intel Wi-Fi 6 AX200, Qualcomm Atheros QCA61x4). Right-click and select Update driver.
    • 🌐 Choose Automatic searchIf Windows doesn't find any updates, download the driver from the laptop manufacturer's website (section Support).

    Download the driver ONLY from the official website of the laptop manufacturer |

    Check driver compatibility with your version of Windows|

    Create a system restore point (Control Panel → Recovery)|

    Disable antivirus during installation|

    Restart your laptop after installation-->

    ⚠️ Attention: If after updating the driver Wi-Fi has disappeared completely (even from Device Manager), roll back to the previous version:
    1. IN Device Manager Right click on the adapter.
    2. Select Properties → Driver → Roll Back Driver.

    3. Reset network settings in Windows

    If the drivers are OK but Wi-Fi still isn't working, try resetting the network stack. This will delete all saved networks and restore factory settings:

    netsh winsock reset
    

    netsh int ip reset

    ipconfig /release

    ipconfig /renew

    ipconfig /flushdns

    Run these commands one by one in Command prompt as administrator (Win + X → Command Prompt (Administrator)). After each command, press Enter.

    Then restart your laptop and try connecting to Wi-Fi again. If the network still isn't visible, remove it manually:

    • Open Settings → Networks and Internet → Wi-Fi.
    • Click Managing known networks.
    • Select your network and click Forget.
    • Restart your laptop and try connecting again by entering the password.

    4. Problems on macOS: From SMC to creating a new configuration

    On laptops Apple MacBook The diagnostic algorithm is different. Start by checking the system parameters:

    • 🍏 Make sure Wi-Fi is enabled in the menu Control center (antenna icon in the upper right corner).
    • 🔍 Open System Preferences → NetworkThe adapter should be displayed in the left column. Wi-Fi with a green dot.
    • 📡 If the status Not connected, click Additionally and remove all networks from the list Preferred networks.

    If this doesn't help, perform a reset SMC (system management controller):

    MacBook model How to reset SMC
    MacBook with a non-removable battery (2018 and newer)

    1. Turn off your MacBook.

    2. Press and hold Control + Option (Alt) + Shift + power button for 10 seconds.

    3. Release the keys and turn on the laptop.

    MacBook with a removable battery (until 2017)

    1. Turn off your MacBook and disconnect the power adapter.

    2. Remove the battery.

    3. Hold the power button for 5 seconds.

    4. Put the battery back in and turn on the laptop.

    If resetting the SMC does not help, create a new network configuration:

    • Open System Preferences → Network.
    • Click on the three dots at the bottom of the interface list and select Managing virtual interfaces.
    • Click +, select Wi-Fi and create a new interface.
    • Connect to the network using the new profile.
    What to do if macOS says "No Wi-Fi hardware"

    If in System settings adapter Wi-Fi If it's completely absent, this is a sign of a hardware failure (antenna failure or module failure). In 80% of cases, the only solution is to replace the Wi-Fi module at a service center. MacBook Pro/Air 2018+ modules are soldered to the motherboard, so repairs will cost 15,000–30,000 rubles.

    5. Linux: Checking Kernel Modules and NetworkManager

    IN Linux (Ubuntu, Fedora, Debian, etc.) Wi-Fi problems are often related to missing proprietary drivers or conflicts NetworkManagerStart by checking if the adapter is recognized by the system:

    lspci | grep -i network
    

    lsusb | grep -i network

    If the output contains lines with Wireless, Wi-Fi or chip names (Intel, Broadcom, Realtek) — the adapter is detected. If not, the problem is hardware.

    Next, check if the kernel module for your adapter is loaded:

    lsmod | grep -i wifi
    

    dmesg | grep -i firmware

    If in the output dmesg there are errors of the type firmware missing — download the proprietary driver:

    • 🐧 For Broadcom: sudo apt install firmware-b43-installer (Debian/Ubuntu).
    • 🖥️ For Realtek RTL8821CE: sudo apt install rtl8821ce-dkms.
    • 📡 For Intel: Usually drivers are in the kernel, but sometimes firmware is needed: sudo apt install firmware-iwlwifi.

    If the driver is installed but Wi-Fi is not working, restart NetworkManager:

    sudo systemctl restart NetworkManager

    6. Hardware malfunctions: when it's time for service

    If none of the software methods helped, the problem may lie in ironHere are some signs that indicate you should contact a service center:

    • 🔌 The adapter is not detected by the system. (not displayed in Device Manager/lsusb).
    • 🔥 The laptop is overheating (The Wi-Fi module may turn off at temperatures above 80°C).
    • 📉 The signal disappears when the screen moves. (the antenna cable is damaged).
    • Wi-Fi only works near the router. (antenna or module is faulty).

    The cost of repair depends on the laptop model:

    Type of malfunction Average repair cost (2026) Notes
    Replacing the Wi-Fi module 1 500–4 000 ₽ On MacBook (2018+) the module is soldered - replacement only with the motherboard (from 20,000 ₽).
    Antenna repair/replacement 1 000–2 500 ₽ A common problem after drops or severe screen bending.
    Re-soldering the module contacts 2 000–5 000 ₽ Applicable to laptops older than 5 years.
    ⚠️ Note: On laptops Lenovo Yoga, HP Spectre And Dell XPS The Wi-Fi module is often integrated into the motherboard. Replacing it can cost as much as half the price of a new laptop—check the repair price before making a deal!

    7. Temporary solutions: USB adapter or sharing from a phone

    If you need your laptop urgently and the repair is postponed, use these workarounds:

    • 📱 Sharing Internet from a phone:
      • On Android: Settings → Connections → Tethering & portable hotspot → Mobile hotspot.
      • On iPhone: Settings → Tethering.
    • 🖧 USB Wi-Fi adapter (from 500 ₽):
      • Plugs into any USB port.
      • Supports standards Wi-Fi 5 (802.11ac) or Wi-Fi 6 (802.11ax).
      • Examples: TP-Link TL-WN823N, ASUS USB-AC56.
    • 🌐 Connection via cable:
      • If the router is nearby, use it. Ethernet-cable.
      • For laptops without a port RJ-45 I need an adapter USB-to-Ethernet (from 300 ₽).

    Important: USB adapters often conflict with the built-in Wi-Fi module. Before connecting, disable the built-in adapter in Device Manager (right click → Disconnect the device).

    FAQ: Frequently asked questions about missing Wi-Fi on a laptop

    ❓ Why does Wi-Fi disappear after a Windows update?

    Windows updates sometimes reset or corrupt network adapter drivers. To fix this:

    1. Roll back to the previous driver version (Device Manager → Adapter Properties → Driver → Roll Back Driver).
    2. If the rollback is not possible, download the driver from the laptop manufacturer's website (not from Windows Update).
    3. Uninstall the current driver and reinstall it.

    If the problem persists after each update, disable automatic driver updates via gpedit.msc (For Windows Pro).

    ❓ My laptop sees networks but won't connect—it says "Unable to connect."

    Reasons and solutions:

    • Incorrect password: Remove the network in Managing known networks and reconnect.
    • IP conflict: Enter in the command line:
      ipconfig /release
      

      ipconfig /renew

    • Router restrictions: Check if it is turned on MAC filter in the router settings (section Wireless → MAC Filter).
    • Incompatible Wi-Fi standard: If the router is operating in mode 802.11r (Fast Roaming), disable it or update the adapter driver.
    ❓ The Wi-Fi indicator on my laptop is orange – what does this mean?

    An orange or yellow Wi-Fi indicator (if your laptop has one) usually means:

    • Hardware shutdown: Click Fn + key with antenna icon or check the physical switch.
    • Airplane mode: Turn it off in Windows settings or macOS Control Center.
    • Driver problems: Update or reinstall the network adapter driver.
    • Module overheating: If the indicator flashes orange under high load, use a cooling pad.

    On laptops HP orange color may indicate Connection blocking through HP Connection Manager - check its settings.

    ❓ Is it possible to replace the Wi-Fi module in a laptop myself?

    Yes, but there are some nuances:

    • Removable modules (before 2018): Replacement takes 10-15 minutes. You need to unscrew the bottom cover, remove the old module (usually format M.2 2230 or NGFF) and insert a new one. Examples of compatible modules: Intel AX200, Qualcomm QCA6174.
    • Soldered modules (after 2018): Replacement requires soldering and specialized equipment. MacBook and ultrabooks (Dell XPS, Lenovo Yoga) it is almost impossible at home.

    Before purchasing a new module, check:

    1. Form factor (M.2 2230, M.2 1216 and others).
    2. Support of standards (Wi-Fi 5 or Wi-Fi 6).
    3. Compatibility with your laptop model (look for information on forums, for example, NotebookReview).
    ⚠️ Please note: Replacing the Wi-Fi module with a non-certified one may void the warranty (if it is still valid).
    ❓ How do I find out which Wi-Fi module is in my laptop?

    There are several ways:

    • In Windows:
      1. Open device Manager.
      2. Expand the branch Network adapters.
      3. Find the device with the name Wireless or Wi-Fi.
      4. Right click → Properties → Details → Hardware ID.
      5. Copy the lines VEN_XXXX And DEV_XXXX — these are the manufacturer and device identifiers.
    • On Linux: Run the command lspci -vvnn | grep -i network.
    • Physical examination: On some laptops, the module model is indicated on a sticker (you need to remove the bottom cover).
    • Then find the module by ID on the website PCI Lookup or in the database Wi-Fi Alliance.