Wireless internet has become an integral part of our lives, but sometimes even a simple task - connect a laptop to Wi-Fi — turns into a headache. You turn on your device, and the network icon is either crossed out with a red X or completely missing. Sound familiar? There could be a multitude of reasons, from a simple disabled adapter to serious issues with the drivers or router settings.
In this article we will look at all possible methods turning on Wi-Fi on a laptop under control Windows 10/11, macOS And LinuxWe'll also tell you what to do if the network isn't detected or the connection keeps dropping. Whether you're a beginner or an experienced user, there's a solution for every situation.
Before adjusting settings, make sure the issue isn't with your ISP. Check if other devices (smartphone, tablet) work with the same Wi-Fi connection. If there's no internet connection everywhere, call your ISP's support team. If the issue is limited to your laptop, read on.
1. Check if Wi-Fi is physically enabled on your laptop
The first thing to do is to make sure that Wi-Fi module Physically turned on. Most laptops have a dedicated wireless button or switch. Their location varies by model:
- 💻 Keyboard shortcut: On laptops ASUS, HP, Lenovo And Acer the combination is often used
Fn + F2(or other function keys with an antenna icon). Dell it could beFn + PrtSc. - 🔄 Hardware switch: On some models (for example, older ones) Sony Vaio or Toshiba) there is a physical slider on the side or front of the case.
- 🔋 Airplane mode: Check if Airplane Mode is activated - it turns off all wireless modules, including Wi-Fi and Bluetooth.
If the Wi-Fi indicator (usually a blue or green LED near the touchpad) doesn't light after pressing the key combination or toggling the switch, the problem may be deeper. In this case, proceed to the next sections.
⚠️ Attention: On some laptops (eg. Lenovo ThinkPad) to activate the function keys (Fn) you need to enable the corresponding setting in the BIOS. If the combinations don't work, check the BIOS settings (sectionConfiguration → HotKey Mode).
2. Turn on Wi-Fi through Windows 10 and 11 settings
If enabling the network using hardware doesn't help, try activating it through the operating system settings. These instructions apply to both versions of Windows, with minor interface differences.
For Windows 10:
- Click
Win + Ito open Settings. - Go to the section
Network and Internet → Wi-Fi. - Move the "Wireless Network" slider to the "On" position. "On".
- From the list of available networks, select yours and enter the password.
For Windows 11:
- Open Settings (
Win + I). - Select
Network and Internet → Wi-Fi. - Activate the switch next to the inscription «Wi-Fi».
- Click on the name of your network and connect.
If the list of networks is empty or your Wi-Fi is not showing, try refreshing the list by clicking Refresh (arrow icon). If this doesn't help, the problem may be with the router drivers or settings.
Make sure the router is turned on and distributing the network|
Check if Airplane Mode is activated|
Refresh the list of available networks manually|
Try connecting to another network (for example, from a phone)-->
3. Checking and updating Wi-Fi adapter drivers
One of the most common sources of problems is outdated or damaged drivers Wireless adapter. If Wi-Fi won't turn on or keeps disconnecting, follow these steps:
How to check the driver:
- Click
Win + Xand selectdevice Manager. - Expand the branch
Network adapters. - Find the device with the names Wireless, Wi-Fi, 802.11 or adapter model (for example, Intel Wi-Fi 6 AX200, Qualcomm Atheros).
- If there is a yellow exclamation mark next to the adapter, the driver is not working correctly.
How to update the driver:
- 🔄 Automatically: Right-click on the adapter →
Update driver→Automatic search. - 💾 Manually: Download the latest driver from the laptop manufacturer's website (section
Support) and install it. - 🔙 Rollback: If the problems started after the update, select
Properties → Roll Back Driver.
After updating, restart your laptop. If the driver is missing completely (the adapter is displayed as "Unknown Device"), try installing it using the program DriverPack Solution or Snappy Driver Installer.
⚠️ Attention: Don't download drivers from third-party websites—they may contain viruses. Always use official sources: the laptop manufacturer's website (Lenovo, HP, Dell) or adapter (Intel, Broadcom, Realtek).
What to do if the driver is not installed?
If an error occurs during driver installation "This device cannot start (code 10)", try:
1. Uninstall the current driver via device Manager (right click → Remove device).
2. Restart your laptop - Windows will try to install the driver automatically.
3. If that doesn't help, download the driver from another source (for example, from the chipset manufacturer's website, not the laptop manufacturer's website).
4. Diagnosing Wi-Fi problems in Windows
Windows has a built-in network diagnostic tool that can automatically identify and fix some problems. To run it:
- Right-click on the network icon in the tray (bottom right).
- Select
Troubleshooting. - Follow the wizard's instructions.
The tool will check:
- 🔌 Connecting the adapter.
- 📡 Network availability.
- 🔑 Correct IP and DNS settings.
- 🛡️ The presence of a firewall or antivirus blocking the network.
If the diagnostics don't help, try resetting the network:
- Open
Settings → Network & Internet → Status. - Click
Network resetand confirm the action.
| Error | Possible cause | Solution |
|---|---|---|
No connections available |
The adapter is disconnected or faulty | Check drivers and physical activation |
Failed to connect to the network |
Incorrect password or router settings | Reboot your router and check your password. |
Limited connection |
IP or DNS issues | Reset the network or enter DNS manually |
Network without internet access |
Problems with the provider or the router | Reboot your router and call your ISP. |
5. Connecting to Wi-Fi on macOS laptops
On MacBook The process of connecting to Wi-Fi is simpler, but it also has its nuances. If your Mac If you can't see the network or it doesn't connect, follow these instructions:
Turning on Wi-Fi:
- Click on the Wi-Fi icon in the top bar (on the right).
- Select
Turn on Wi-Fi, if it is disabled. - In the list of networks, select yours and enter the password.
If the network is not displayed:
- 🔄 Reboot MacBook and a router.
- 📡 Make sure that your router is not hiding the SSID (network name).
- 🛠️ Reset network settings:
System Preferences → Network → Wi-Fi → Advanced → Remove Network.
On macOS Driver issues can also occur, but they're less common than on Windows. If Wi-Fi suddenly stops working after a system update, try:
- Update macOS to the latest version (
System Settings → Software Update). - Reset
NVRAM(hold while loadingOption + Command + P + Rwithin 20 seconds).
6. Setting up Wi-Fi on Linux laptops (Ubuntu, Mint, Fedora)
IN Linux Wi-Fi connectivity may vary depending on the distribution and desktop environment you are using (GNOME, KDE, XFCE). Let's consider a universal method via the terminal and graphical interface.
Method 1: Via a graphical interface (GNOME/KDE)
- Click on the network icon in the upper right corner.
- Select
Wi-Fi → Turn on(if disabled). - Find your network in the list and connect.
Method 2: Via the terminal (universal)
- Check if your Wi-Fi adapter is enabled:
rfkill listIf there is a line in the output
Soft blocked: yes, unlock the adapter:sudo rfkill unblock wifi - View available networks:
nmcli device wifi list - Connect to the network (replace
SSIDAndpassword):nmcli device wifi connect "SSID" password "password"
If the commands don't work, make sure the package is installed network-manager:
sudo apt install network-manager # For Debian/Ubuntu
sudo dnf install NetworkManager # For Fedora
⚠️ Attention: In some distributions (for example, Arch Linux) Network services may be disabled by default. Check the service status:sudo systemctl status NetworkManagerIf it is not active, run:
sudo systemctl enable --now NetworkManager
7. Troubleshooting router and network settings
If everything is configured correctly on your laptop, but Wi-Fi still isn't working, the problem may be with your router. Here's what to check:
- 🔌 Rebooting the routerUnplug it for 30 seconds, then plug it back in. This solves 90% of temporary problems.
- 📡 Channel and frequency: If the network is unstable, try changing the channel in the router settings (for example, from
Autoon6or11). To do this, go to the router's web interface (usually192.168.0.1or192.168.1.1). - 🔒 Security type: Make sure your router is using
WPA2-PSKorWPA3. OutdatedWEPmay not be supported by modern devices. - 📶 Signal strength: If your laptop is far from the router, the signal may be too weak. Try moving closer or using repeater.
If you can't access your router settings, try resetting it to factory settings (button Reset on the back panel). After the reset, all settings, including the Wi-Fi password, will return to factory settings!
8. Alternative ways to connect to the Internet
If your laptop's Wi-Fi still isn't working, there are a few temporary solutions to get online:
- 📱 USB tethering from a smartphone: Connect your phone via USB, enable modem mode in the settings (
Settings → Wireless & networks → Tethering & portable hotspot). - 🔌 Ethernet cable: Connect your laptop to the router directly using a network cable.
- 📶 Mobile 4G/5G modem: Use a USB modem from your operator (for example, Megaphone, Beeline, MTS).
- 💻 Ad-hoc network: Create a hotspot from another laptop or PC (via
Command lineorMobile hotspotin Windows).
These methods will help temporarily solve the problem, but for permanent use, it is still better to figure out the Wi-Fi on the laptop.
⚠️ AttentionRouter interfaces and settings may vary depending on the model and firmware. For exact settings (such as the web interface login address or the location of the Wi-Fi settings section), please refer to your device's manual.
FAQ: Frequently asked questions about connecting Wi-Fi to a laptop
My laptop can't see any Wi-Fi networks. What should I do?
First, check if the Wi-Fi adapter is enabled (physically and in the OS settings). If so, update the drivers or try connecting an external USB Wi-Fi adapter. If this doesn't help, the adapter may be faulty (requires diagnostics at a service center).
The Wi-Fi connects, but the internet doesn't work. What's wrong?
There are several reasons:
- Problems with the provider (check on other devices).
- Incorrect IP/DNS settings (try entering DNS manually:
8.8.8.8And8.8.4.4). - Blocked by antivirus or firewall (temporarily disable them).
How do I find out the model of my laptop's Wi-Fi adapter?
In Windows: Open Device Manager → Network AdaptersIn Linux, run the command:
lspci | grep -i network
On macOS: System Information → Network → Wi-Fi.
Is it possible to connect to Wi-Fi without a password?
Technically yes, but only if the network is open (unencrypted) or you know the password. Hacking secure networks (WPA2/WPA3) is illegal and punishable under Article 272 of the Russian Criminal Code. If you've forgotten your network password, reset your router or look for it on the sticker on the back of the device.
Why is Wi-Fi slow on my laptop but fine on my phone?
Possible reasons:
- Outdated Wi-Fi standard on the laptop (eg.
802.11ninstead of802.11ac/ax). - The adapter driver is not optimized (please update it).
- Background programs are consuming traffic (check in
Task Manager). - The laptop is far from the router or there is interference (walls, other networks).