Have you just bought a new laptop or after updating your system you found that Wi-Fi is disabled — and now you can't connect to the internet? This problem is familiar to millions of users, but its resolution usually takes no more than a couple of minutes. In 90% of cases, the culprit isn't a broken adapter, but rather a simply disabled wireless module—it could have been accidentally disabled using hotkeys, through the Windows menu, or even in the BIOS.
In this article you will find step-by-step instructions for all operating systems (Windows 10/11, macOS, Linux), as well as separate recommendations for popular brands - Lenovo, HP, Asus, Dell And AcerWe'll cover both software (system settings) and hardware (case buttons, BIOS) methods. If the network still doesn't work after all these steps, there's a troubleshooting checklist at the end of the article.
Before you begin, make sure the router is turned on and broadcasting the network (check the indicators on the router). If other devices (smartphone, tablet) connect to the same access point without problems, the issue is definitely with the laptop.
1. Hotkeys for turning on Wi-Fi
The fastest way is to use function key combinationAlmost all manufacturers assign it to one of the buttons. F1–F12 control of wireless modules. This is usually a combination with the key Fn (For example, Fn + F2).
Here are the standard combinations for popular brands:
- 🔹 Lenovo:
Fn + F5orFn + F7(on some models there is a separate button with an antenna on the side panel) - 🔹 HP:
Fn + F12or a button with an airplane on the keyF12 - 🔹 Asus:
Fn + F2(on older models there may be a physical switch) - 🔹 Dell:
Fn + PrtScorFn + F2 - 🔹 Acer:
Fn + F3or a separate switch on the front panel - 🔹 Apple MacBook: no hotkeys - control only through the menu
If the combination doesn't work, try pressing Fn twice (on some laptops this turns the function row on/off). Also check if the Wi-Fi indicator on the case is lit - if it is red or orange, the module is disabled by hardware.
⚠️ Note: On laptops Lenovo ThinkPad series T/X There may be a separate physical switch on the side panel - it's easy to miss if you don't know.
2. Turn on Wi-Fi through Windows 10 and 11 settings
If the hotkeys don't help, try enabling the adapter through the system settings. Windows 10 And Windows 11 the algorithm is almost identical:
Click
Win + Ito open Parameters.Go to the section
Network and Internet→Wi-Fi.Move the slider Wi-Fi in position
On.If there is no slider or it is gray, click
Change adapter settings(bottom right).
In the window that opens Network connections find Wireless network connection (or Wi-Fi). If its icon is gray, right-click and select Turn on.
Are your network settings open?|Is the Wi-Fi slider active?|Is the adapter enabled in Network Connections?|Have you tried restarting your laptop?-->
If the network does not appear after turning it on, try Forget the network (click on the name of your access point → Forget), then reconnect by entering the password.
⚠️ Attention: In Windows 11 After the 24H2 (2026) update, the network menu may look different - if you can't find the section Wi-Fi, use the search by parameters (magnifying glass at the top of the window).
3. Checking network adapter drivers
If Wi-Fi doesn't turn on either using the keys or through the settings, the problem may be in driversThe absence or damage of the adapter driver results in the system simply not "seeing" the module.
To check:
Click
Win + X→device Manager.Expand the tab
Network adapters.Find the device with the words
Wireless,Wi-Fior802.11(For example, Intel Wi-Fi 6 AX200).If there is an exclamation mark next to the name, right-click →
Update driver.
If the update didn't help, download the driver from Intel website (for Intel adapters) or from the laptop manufacturer's website (enter the model in the search). For Realtek And Broadcom It is better to get drivers from the official support pages.
| Adapter manufacturer | Website for downloading drivers | Typical models |
|---|---|---|
| Intel | intel.ru | AX200, AX210, 8265, 7265 |
| Realtek | realtek.com | RTL8821CE, RTL8723DE |
| Broadcom | broadcom.com | BCM4352, BCM4360 |
| Qualcomm Atheros | qualcomm.com | QCA6174, QCA9377 |
4. Turn on Wi-Fi on your MacBook (macOS)
On laptops Apple Wireless network management is simpler, but there are some nuances. If the Wi-Fi icon in the menu bar is grayed out or missing, follow these instructions:
Click on the icon Wi-Fi in the upper right corner (if it is not there, go to
System Preferences → Network).Select
Turn on Wi-Fi.If the networks are not displayed, click
Additional optionsand check if the adapter is turned on.
If Wi-Fi doesn't turn on even through settings:
- 🔹 Restart your MacBook (sometimes it helps)
power off by holding down the power button for 10 seconds). - 🔹 Reset
NVRAM: turn off the laptop, then turn it on while holding downOption + Command + P + R(hold for 20 seconds). - 🔹 Check if there are any restrictions in
System Preferences → Screen Time → Content & Privacy.
⚠️ Attention: On MacBook Pro/Air with M1/M2 chip Wi-Fi problems may be due to a firmware bug - check for updates in System Settings → Software Update.
5. Hardware methods: buttons and BIOS
If software methods do not work, check physical switches and settings BIOS/UEFI.
Step 1: Look for the button on the case
- 🔹 On older models HP, Dell And Acer There may be a slider or a button with an antenna on the front/side panel.
- 🔹 On Lenovo ThinkPad Sometimes there is a switch next to the connector
USB. - 🔹 On Asus ROG the button may be hidden under a cover (for example, next to
HDMI).
Step 2: Check BIOS
If the adapter is disabled at the BIOS level, even Windows won't detect it. To enable it:
Restart your laptop and press
F2,DelorEsc(depending on the model) to enter BIOS.Find the section
Advanced→WirelessorOnboard Devices.Make sure the parameter
Wi-FiorWLANinstalled inEnabled.Save changes (
F10) and reboot.
What to do if there are no Wi-Fi settings in BIOS?
If section Wireless There is no BIOS - this means the adapter is controlled only through the OS or a hardware button. In rare cases (for example, on some Dell Latitude) Wi-Fi settings are hidden in a submenu System Configuration → Integrated NIC.
6. Enabling Wi-Fi in Linux (Ubuntu, Mint, Fedora)
In distributions based on Linux Network management depends on the environment used (GNOME, KDE, XFCE). General algorithm:
Method 1: Via the graphical interface
- 🔹 In Ubuntu/GNOME: Click on the network icon in the upper right corner →
Wi-Fi is not turned on→ toggle the slider. - 🔹 In KDE Plasma:
System Settings → Network → Devices → Wi-Fi. - 🔹 In Linux Mint: network tray icon →
Enable Wi-Fi.
Method 2: Via the terminal
If the GUI does not work, use the commands:
# Checking the adapter statusip a | grep wlan
Enabling Wi-Fi (if the adapter is called wlan0)
sudo ip link set wlan0 up
Network scanning
sudo iwlist wlan0 scan | grep ESSID
If the adapter is not detected, check if the kernel module is loaded:
lsmod | grep -i wifiIf empty, load the module (for example, for Intel)
sudo modprobe iwlwifi
⚠️ Note: In some distributions (for example, Arch Linux) manual configuration may be requiredwpa_supplicantor installing a packagenetwork-manager.
7. Troubleshooting: Checklist
If none of the above worked, go through this list:
| Problem | Solution |
|---|---|
| The adapter is not showing up in Device Manager. | Check the physical connection of the module (on some laptops it is removable). |
| Wi-Fi turns on, but doesn't find a network. | Update your driver or check your router settings (the SSID may be hidden). |
| The network connects, but there is no internet access. | Check your settings IP/DNS or reset TCP/IP settings. |
| The Wi-Fi indicator is blinking orange | Hardware failure - please contact the service center. |
If the problem persists, try:
- 🔹 Connect your laptop to the router via cable and update the firmware.
- 🔹 Reset BIOS settings to factory defaults (
Load Default Settings). - 🔹 Check your laptop on a different router (there may be a problem with the access point).
FAQ: Frequently Asked Questions
Why is there no Wi-Fi button on the laptop?
On modern models (especially ultrabooks), hardware switches have been removed in favor of software controls. Look for a combination with Fn or check the settings in the BIOS. MacBook and many Dell XPS There are no buttons at all.
Wi-Fi turns on but keeps turning off – what should I do?
The reasons may be different:
- 🔹 Energy saving: In Device Manager, open the adapter properties →
Power management→ uncheckAllow shutdown.... - 🔹 Interference: switch the router to a channel
5 GHz(if the laptop supports it). - 🔹 Driver: Roll it back to the previous version or install it from the manufacturer's website.
Is it possible to turn on Wi-Fi without a Windows password?
Yes, if you have access to the BIOS. Enable the adapter there, then boot from the LiveCD (for example, Ubuntu) and connect to the network. You can also reset your Windows password using utilities like Offline NT Password & Registry Editor.
How to turn on Wi-Fi on a laptop with a broken screen?
Connect your laptop to an external monitor via HDMI or DisplayPortIf the screen is completely broken, use key combinations blindly (for example, Win + X → device Manager → Use the arrows to find the adapter and turn it on.
Wi-Fi is working, but very slow – what’s the matter?
Check:
- 🔹 Your internet speed is limited by your provider (maybe limited by your router).
- 🔹 Adapter settings: in Device Manager, open
Properties → Advancedand install802.11n/ac/axinstead of802.11b/g. - 🔹 Channel load: use the app Wi-Fi Analyzer (Android) or NetSpot (Windows/macOS) to select a free channel.