Have you turned on your laptop, but the Wi-Fi icon in the system tray is crossed out with a red cross or is missing altogether? Does the system display "No available connections" even though the router is working properly and other devices connect without issue? This situation is familiar to many, especially owners of older models.Lenovo ThinkPad T400, Dell Latitude E6400) or laptops after reinstalling Windows. In 80% of cases, the problem can be resolved with software, but sometimes the hardware is to blame.
In this article we will look at all possible reasonsThere are several reasons why a laptop might not support Wi-Fi—from a simple disconnected adapter to a physically broken antenna. You'll learn how to diagnose the problem, which drivers to download, when a BIOS reset helps, and when it's time to take your device to a service center. We'll pay special attention to laptops without built-in Wi-Fi (for example, some models HP ProBook 450 or cheap Chuwi) and cases when the adapter is detected, but does not catch the network.
Be warned: If your laptop was manufactured before 2010, there's a good chance it only supports the outdated standard. 802.11b/g (maximum 54 Mbps). Modern routers often disable support for these standards for security reasons—check your router settings!
1. Checking the physical condition of the Wi-Fi adapter
Before digging into the settings, make sure the problem isn't hardware-related. Let's start with the most obvious:
- 🔌 Wi-Fi button/switch. On many laptops (Asus, Acer, MSI) there is a hardware button or slider to disable wireless modules. It can be located on the front panel, the side, or even on the keyboard (for example,
Fn + F2). Check if it was pressed accidentally. - 🔋 Battery/power supply. Some laptops (Sony Vaio, Toshiba Satellite) disable Wi-Fi when the battery is low or when running on AC power without a battery. Connect the charger and check.
- 🛠️ AntennasIf the laptop was dropped or disassembled, the antenna wires connected to the Wi-Fi module could become torn or damaged. This is a common problem with HP Pavilion And Lenovo IdeaPad with plastic housings.
How do I check the antennas? Carefully remove the laptop's back cover (if it's removable) and locate the Wi-Fi module—usually a small board with markings. Intel, Broadcom, Qualcomm Atheros or RealtekThere are two thin cables connected to it (black and white or gray). If they are loose or torn, this is the reason for the lack of Wi-Fi.
⚠️ Warning: Disassembling your laptop may void your warranty. If your device is under warranty, please contact a service center. For models Apple MacBook (2015 and newer) DIY repairs are nearly impossible due to proprietary fasteners.
2. Diagnostics in Windows Device Manager
If everything is physically in order, we move on to the software part. In Windows, the main diagnostic tool is device Manager. Open it:
- Click
Win + X→ select "Device Manager". - Or enter in the search
devmgmt.mscand press Enter.
In the Device Manager, find the "Network Adapters" section. There are three possible situations here:
- There is an adapter, but it has an exclamation mark. — there is a problem with the driver.
- There is no adapter at all - it is disabled in BIOS or is physically missing.
- The adapter is there, but it's called "Unknown Device" — driver installation required.
If the adapter is displayed as Realtek RTL8188EE, Intel Wireless-AC 9560 or similar, but Wi-Fi doesn't work, try:
- 🔄 Right-click → "Enable device" (if available).
- 🗑️ Uninstall the device (right-click → "Uninstall") and restart your laptop - Windows will try to install the driver automatically.
- 🔧 Update the driver manually (more on this in the next section).
What does a Wi-Fi adapter look like in Device Manager?
It usually contains the words "Wireless," "Wi-Fi," "802.11," or the chip name (Intel, Broadcom, Qualcomm). Examples: "Intel(R) Dual Band Wireless-AC 3168," "Realtek RTL8723DE Wireless LAN 802.11n PCI-E NIC."
3. Installing and updating drivers
Incorrect or outdated drivers are the most common reason why a laptop doesn't support Wi-Fi. Even if the adapter is detected, it won't work without the correct driver. three ways solve the problem:
Method 1: Automatic update via Windows
Right-click the adapter in Device Manager → Update Driver Software → Search Automatically. Windows will attempt to find and install the latest version. Minus: This method often does not work for older adapters (eg. Broadcom 4313 in 2012 laptops).
Method 2: Manual installation from the manufacturer's website
The best option is to download the driver from the manufacturer's official website. laptop (not an adapter!). For example:
- For Lenovo: pcsupport.lenovo.com → enter your laptop model.
- For HP: support.hp.com → "Drivers" section.
- For Dell: dell.com/support → Enter the service tag.
Looking for driver for "Wireless LAN" or "Wi-Fi"Important: Select the version for your operating system (Windows 10/11 x64 or x86). After downloading, run the installer and restart your laptop.
Method 3: Universal drivers from the chip manufacturer
If the driver on the laptop manufacturer's website doesn't help, try downloading it directly from the chip developer:
- Intel: auto detection page.
- Realtek: "Download" section (search by chip model, for example, RTL8821CE).
- Qualcomm Atheros: Drivers are often included in packages from laptop manufacturers.
⚠️ Warning: Never download drivers from third-party websites (like driverpack.io or similar). They often contain viruses or outdated versions, which can worsen the problem.
☑️ Check Wi-Fi drivers
4. Checking BIOS/UEFI settings
If the Wi-Fi adapter doesn't appear in Device Manager at all, it may be disabled at the BIOS level. This is relevant after:
- 🔧 Reset BIOS to factory settings.
- 🔋 BIOS firmware updates.
- 💻 Replacing the motherboard or Wi-Fi module.
To check BIOS settings:
- Restart your laptop and press the BIOS entry key (usually
F2,Del,EscorF12— depends on the model). - Find the section
Advanced,System ConfigurationorWireless. - Look for parameters like:
Wireless LAN Support→ should beEnabled.Wi-FiorWLAN Radio Control→Enabled.Onboard Wireless→Enabled.
F10) and reboot.On some laptops (Sony Vaio, Fujitsu) Wi-Fi may be blocked by a password in the BIOS. If you see the option Wireless LAN Password - try leaving the field blank or enter the default password (often this is 0000 or 1234).
5. Diagnostics in Linux (Ubuntu, Mint, Fedora)
In Linux, Wi-Fi issues are often caused by missing proprietary drivers. If the adapter isn't working after installing the system, follow these steps:
Step 1: Check if the adapter is present
Open Terminal (Ctrl + Alt + T) and enter:
lspci | grep -i network
Or for USB adapters:
lsusb
If the output contains lines with Network controller or chip names (Intel Corporation Wireless 7260, Realtek Semiconductor Co., Ltd. RTL8188EE) — the adapter is detected. If not, the problem is at the BIOS or hardware level.
Step 2: Installing Drivers
For most adapters in Ubuntu/Mint, it is enough to install the package firmware:
sudo apt updatesudo apt install firmware-iwlwifi # for Intel
sudo apt install firmware-realtek # for Realtek
For Broadcom may require:
sudo apt install --reinstall bcmwl-kernel-source
After installation, restart your laptop:
sudo reboot
Step 3: Check for RFKill blocking
Linux can block Wi-Fi through the system programmatically rfkillCheck the status:
rfkill list
If next to Wireless LAN costs Soft blocked: yes, unlock:
sudo rfkill unblock wifi
6. Alternative solutions: USB adapters and module replacement
If all the above methods fail, your laptop may not actually support Wi-Fi at the hardware level. This applies to:
- 🖥️ Very old models (before 2008), where Wi-Fi was an option.
- 💻 Budget laptops (for example, some Chuwi or Jumper without built-in module).
- 🔧 Laptops after repair, where the Wi-Fi module was not reconnected.
In such cases, there are two options:
Option 1: USB Wi-Fi adapter
The simplest solution is to buy an external USB adapter. We recommend the following models:
| Model | Standard | Speed | Price (approximately) | Linux support |
|---|---|---|---|---|
| TP-Link TL-WN725N | 802.11n | 150 Mbps | 500–700 ₽ | Yes (driver rtl8188eu) |
| ASUS USB-AC53 Nano | 802.11ac | 433 Mbps | 1 200–1 500 ₽ | Yes (driver rtl88x2bu) |
| Edimax EW-7811Un | 802.11n | 150 Mbps | 600–900 ₽ | Yes (in the Linux kernel) |
| Tenda U3 | 802.11ac | 433 Mbps | 900–1 200 ₽ | Partially (firmware needed) |
For laptops with USB 3.0 (blue ports) it is better to choose adapters with support 802.11ac (5 GHz). For older devices (USB 2.0) that's enough 802.11n.
Option 2: Replacing the internal Wi-Fi module
If you want to keep your laptop "clean" and free of protruding USB devices, you can replace the internal module. The key is to choose a compatible model. Consider:
- 🔌 Interface:
Mini PCIe(old laptops) orM.2 (NGFF)(new). - 📶 Chipset: must be supported by your system (eg. Intel 7260 universal for Windows/Linux).
- 🔄 Bluetooth availability: many modules are combined (Wi-Fi + Bluetooth).
Popular replacement models:
- Intel Wireless-AC 7260 (supports 802.11ac, compatible with most laptops).
- Broadcom BCM94360CS2 (good compatibility with macOS if you install Hackintosh).
- Realtek RTL8821CE (budget option for Windows).
⚠️ Attention: When replacing the Wi-Fi module in laptops Apple MacBook (2013 and newer) or some Dell XPS A software lock may be triggered. In such cases, a module with the original PCI ID or BIOS patch.
7. Problems with the router and network settings
Sometimes the problem isn't with the laptop, but with the router or its settings. Check the following:
- 📡 Router operating modeIf the router is configured only for
802.11ac(5 GHz), older laptops won't see it. Switch to the mode802.11n(2.4 GHz) or enable support for all standards (b/g/n/ac). - 🔒 Hidden network (Hidden SSID)If the broadcast SSID is disabled in the router settings, the laptop will not be able to find the network. Connect manually or enable network name broadcasting.
- 🔄 Wi-Fi channelSome channels (e.g. 12–14 in the 2.4 GHz band) may not be supported in your country. Switch to channels 1–11.
- 🛡️ MAC address filteringIf MAC binding is enabled on your router, add your laptop's MAC address to the list of allowed devices.
How to check the MAC address of a laptop?
- In Windows: Open a command prompt (
Win + R→cmd→ipconfig /all) and find the linePhysical Addressfor wireless adapter. - In Linux: Enter in the terminal
ip aorifconfig(need a packagenet-tools).
If you suspect the router, try connecting to a different network (for example, using your phone's hotspot mode). If Wi-Fi works, the problem lies with your router's settings.
FAQ: Frequently Asked Questions about Wi-Fi on Laptops
The laptop only doesn't see my network, but it does see others. What's wrong?
Most likely, the problem is in your router settings:
- Check if the network is hidden (Hidden SSID).
- Make sure your router is broadcasting in the 2.4 GHz range (if your laptop is old).
- Try changing the Wi-Fi channel to 1-11.
- Disable MAC address filtering or whitelist your laptop's MAC address.
It is also possible that the router uses encryption. WPA3, and your adapter only supports WPA2Switch to . WPA2-PSK in the router settings.
The Wi-Fi works, but it keeps dropping out. How do I fix it?
Reasons for an unstable connection:
- Driver: update or roll back to an older version (sometimes new drivers are buggy).
- Energy saving: In Windows, disable the "Allow the computer to turn off this device to save power" option in the adapter properties (Device Manager → Network adapters → right-click → Properties → Power Management).
- Interference: If there are a lot of networks nearby, switch to a less crowded channel (use programs like WiFi Analyzer for Android or inSSIDer for Windows).
- Antennas: If the signal is weak, the antenna inside the laptop may have come loose.
Is it possible to connect Wi-Fi to a laptop without a built-in adapter?
Yes, there are three ways:
- USB adapter (the simplest and cheapest option, see table above).
- PCIe/Wi-Fi card (if there is a free slot in the laptop
Mini PCIeorM.2). - Connecting via Ethernet (If there is a router nearby, you can use a cable and turn on Wi-Fi distribution from your laptop, but this will not solve the problem of connecting to other networks).
It is also suitable for desktop PCs without Wi-Fi. PCIe adapter (For example, TP-Link Archer T6E).
Wi-Fi stopped working after a Windows update. What should I do?
Windows updates often disrupt drivers. Try:
- Roll back to the previous driver version:
- Open Device Manager.
- Right-click on the adapter → "Properties" → "Driver" tab → "Roll Back Driver".
Critical information: If rolling back the driver does not help, and the adapter is detected as "Unknown Device", try manually specifying the driver through Device Manager → "Update driver" → "Browse my computer for driver software" → "Select driver from a list" → select the model of your adapter (even if it does not match exactly).
How do I find out which Wi-Fi adapter is installed in my laptop?
There are several ways:
- In Windows:
- Device Manager → Network Adapters.
- Command line:
wmic nic get name, manufacturer.
- On Linux:
- Terminal:
lspci -knn | grep -iA3 network. - Or:
lshw -C network.
- Terminal:
- Physically:
- Remove the back cover of the laptop and locate the Wi-Fi module - it should have a marking (for example, Intel Dual Band Wireless-AC 3168).
If the adapter isn't detected at all, try finding your laptop model on the manufacturer's website—the specifications usually indicate the type of Wi-Fi module.