How to connect a laptop to Wi-Fi: a universal guide for all operating systems

Wireless internet has long been the standard, but even in 2026, many users encounter difficulties when connecting their laptop to Wi-Fi for the first time. It seems like the process should be intuitive: turn on the adapter, select a network, enter the password, and everything works. However, in practice, things are more complicated: Drivers not installed, That Windows 11 does not see available networks, then macOS persistently demands to update security settings. This article will help you understand all the nuances of the connection, from basic steps to troubleshooting more subtle issues.

We'll cover not only the standard connection procedure on different operating systems, but also address common errors. For example, why does a laptop sees the network, but doesn't connect, how to bypass restrictions on public hotspots, and what to do if the Wi-Fi icon disappears after a system update. We'll pay special attention to Linux-distributions where network configuration often requires manual intervention. And for those who like to optimize everything for their own needs, there's a bonus: how to prioritize networks so your laptop always connects to the fastest internet source.

1. Preparing the laptop for connection: checking the hardware

Before attempting to connect to Wi-Fi, make sure your laptop is technically ready for it. Modern models (Dell XPS 15, HP Spectre x360, Lenovo ThinkPad) usually come with built-in wireless adapters, but even these can be disabled or damaged.

The first thing to do is check the physical condition of the adapterOn some laptops (especially gaming series) ASUS ROG or MSI) there is a separate button or switch to turn Wi-Fi on/off. It is often located on the side panel or among the function keys (usually F2F12 with an antenna icon). If there is such a switch, make sure it is in the on position. ON.

  • 🔍 Check the indicatorsMany laptops have an LED (usually blue or orange) on their case that indicates Wi-Fi is active. If it's off, the adapter is disabled.
  • 🔧 Update your BIOS: on older models (eg, Acer Aspire 2015–2017) There may be problems with recognizing network cards after a Windows update. Check the BIOS version in msinfo32.
  • 🛠️ device Manager: open it through Win + X and find the "Network Adapters" section. If there's an exclamation mark next to the Wi-Fi module's name, the driver needs to be reinstalled.
⚠️ Attention: On some laptops (eg. Lenovo Yoga or HP Pavilion (with touchscreens) Wi-Fi may turn off automatically when the battery is low (less than 10%). Connect the charger if the indicator light flashes red.
📊 What kind of laptop do you have?
Windows (10/11)
macOS (Apple)
Linux (Ubuntu/Fedora, etc.)
Chromebook
Another

2. Standard Wi-Fi connection on Windows 10 and 11

In most cases, connecting to Wi-Fi on Windows It only takes a few clicks. Here are step-by-step instructions for the latest OS versions:

  1. Open the Wi-Fi panel: Click the network icon in the lower right corner (next to the clock). If there is no icon, click Win + A to open the notification center.
  2. Select a network: Find your network in the list of available access points. If your network isn't listed, check if airplane mode is enabled (Win + A → Airplane Mode).
  3. Connect: Click on the network name and enter the password. If you have lost the password, you can find it on the router sticker (field Wi-Fi Password or Key).
  4. Confirm: After entering the password, you may be asked to allow data exchange with other devices on the network (for example, to print to a printer). Select Yes, if you plan to use a local network.

If after connecting an exclamation mark and the status " appears next to the network nameNo internet access", try the following steps:

  • 🔄 Reboot your router: Unplug it for 30 seconds, then plug it back in. This solves 60% of connection problems.
  • 📡 Check the range: Some routers broadcast in two ranges simultaneously - 2.4 GHz And 5 GHzTry connecting to a network with the suffix _5G (it's usually faster, but it's worse at passing through walls).
  • 🔑 Reset network settings: open Settings → Network & Internet → Network resetThis will delete all saved Wi-Fi passwords, so make sure to save them beforehand.

Check if the adapter is enabled in Device Manager.

Update your network card driver

Disable VPN or proxy

Restart your laptop and router

Try connecting to a different network (for example, from a phone)

-->

Problem Possible cause Solution
The laptop doesn't see any networks. The Wi-Fi adapter is disabled or there is no driver. Enable the adapter in Device Manager or install the driver from the manufacturer's website.
Constantly asks for a password Incorrect password or router settings are corrupted Check the case of your password or reset your router.
There is a connection, but no internet Problems with the provider or DNS errors Reboot your router or enter Google DNS (8.8.8.8) manually
Slow Wi-Fi speed Channel congestion or weak signal Change the channel in your router settings or connect to 5 GHz

3. Connecting to Wi-Fi on macOS (MacBook Air/Pro, iMac)

On devices Apple The process of connecting to Wi-Fi is as simple as possible, but there are some nuances. For example, macOS Ventura and newer versions may block connections to open, unencrypted networks (such as in cafes), requiring manual confirmation.

Instructions for MacBook or iMac:

  1. Click on the Wi-Fi icon in the top bar (next to the date and time). If the icon is not there, open it. System Preferences → Network.
  2. Select a network from the list. If there's a lock 🔒 next to the name, it requires a password.
  3. Enter your password and click Connect. On some models (MacBook Pro 2018+) you may be asked to confirm via Touch ID.
  4. If the connection does not occur, open System Preferences → Network → Wi-Fi → Advanced and remove the network from the list of known ones, then try connecting again.

Important note for macOS users: if you're connecting to a hidden network (one that doesn't broadcast its name), you'll need to add it manually via "Other Networks..." The network name (SSID) is case-sensitive!

⚠️ Attention: On MacBook with chips Apple Silicon (M1/M2/M3) there may be a problem connecting to older routers with the standard 802.11nUpdate your router's firmware or enable compatibility mode in its settings.

4. Connecting to Wi-Fi on Linux (Ubuntu, Fedora, Mint)

In distributions Linux The process of connecting to Wi-Fi depends on the desktop environment you are using (GNOME, KDE Plasma, XFCE) and network manager. In most cases, it is used NetworkManager, but sometimes (for example, on Arch Linux) manual configuration may be required via wpa_supplicant.

Standard method (for Ubuntu 22.04+ And Fedora 38+):

  1. Click on the network icon in the upper right corner (next to the battery).
  2. Select the desired network from the list. If the network isn't there, check if Wi-Fi is enabled (some distributions have a separate switch in the same menu).
  3. Enter your password and click ConnectIf the error "Authentication failed", check that the password or encryption type is correct (must be WPA2/WPA3).

If the graphical interface does not work, you can connect via the terminal:

# View available networks

nmcli dev wifi list

Connect to the network (replace SSID and PASSWORD)

nmcli dev wifi connect "Network_Name" password "password"

For hidden networks, add a flag hidden yes:

nmcli dev wifi connect "Network_Name" password "password" hidden yes
⚠️ Attention: In some distributions (for example, Debian without a graphical shell) you may need to install a package firmware-iwlwifi to support Wi-Fi adapters IntelInstall it with the command sudo apt install firmware-iwlwifi.
How to connect to Wi-Fi without NetworkManager?

If NetworkManager is not installed or not running, you can use wpa_supplicant:

1. Open the configuration file: sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

2. Add a block:

network={

ssid="Network_Name"

psk="password"

}

3. Connect: sudo wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf

4. Get IP: sudo dhclient wlan0

5. Solving common connection problems

Even if you followed the instructions, problems may still arise. Here are the most common ones and how to fix them:

5.1 The laptop does not see any Wi-Fi networks

Reasons:

  • 🚫 The adapter is disabled in Device Manager or BIOS.
  • 🔌 Driver problems (especially after Windows update).
  • 📱 Airplane mode is enabled or power saving turned off Wi-Fi.

Solutions:

  1. Check Device Manager (devmgmt.msc) for the presence of exclamation marks next to network adapters.
  2. Update the driver manually from the manufacturer's website (not through Windows Update!). For Intelintel.ru, For Realtekrealtek.com.
  3. Disable power saving mode for your Wi-Fi adapter: Control Panel → Power Options → Change plan settings → Change advanced settings → Wireless adapter settings → Power saving mode → Maximum performance.

5.2. There is a connection, but the Internet does not work

Reasons:

  • 🌐 DNS issues (often after changing providers).
  • 🔄 Router failure (for example, an IP address is not issued).
  • 🛡️ Blocked by antivirus or firewall.

Solutions:

  1. Ping the router: open a command prompt (Win + R → cmd) and enter ping 192.168.1.1 (or another IP address of your router). If there's ping but no internet, the problem is with your ISP.
  2. Flush your DNS cache: ipconfig /flushdns.
  3. Check your firewall settings: temporarily disable it and try connecting again.

5.3. Constant connection breaks

Reasons:

  • 📶 Weak signal (especially at 5 GHz).
  • 🔄 Channel congestion (many devices are connected to the same network).
  • 🔋 Energy saving Disables the adapter when idle.

Solutions:

  • 📡 Switch to frequency 2.4 GHz (passes better through walls) or, conversely, on 5 GHz (less busy).
  • 🔌 Change the Wi-Fi channel in the router settings (optimal channels for 2.4 GHz: 1, 6, 11).
  • ⚡ Disable power saving for the adapter (see section 5.1).

6. Connecting to public Wi-Fi (cafes, airports, hotels)

Public networks often require additional actions, such as accepting the terms of service or entering a phone number or password from a receipt. Here's how to connect in such cases:

  1. Select the network from the list of available networks (usually it is called Free_WiFi, Guest or by the name of the establishment).
  2. Log in. If a browser window with an authorization form appears, enter the required information (phone number, email, or password).
  3. If the window does not open automatically, open your browser and go to any website (for example, google.com). You will be redirected to the authorization page.
  4. After successful authorization, check the connection (for example, refresh the page).

Important: do not enter personal information (passport details, social media passwords) on public networks! Use VPN (For example, ProtonVPN or Windscribe), if you need to transmit confidential information.

⚠️ AttentionAt some hotels or airports, Wi-Fi is only available after you register at reception. If the network is visible but doesn't connect, check with the receptionist.

7. Setting Wi-Fi network priority

If your laptop automatically connects to the wrong network (for example, to a weak neighbor's Wi-Fi instead of your router), you can set priorities manually.

On Windows 10/11:

  1. Open Settings → Network & Internet → Wi-Fi → Manage known networks.
  2. Select the network you want to prioritize and click Properties.
  3. Enable the option Connect automatically when entering range.
  4. To remove unnecessary networks, click Forget.

On macOS:

  1. Open System Preferences → Network → Wi-Fi → Advanced.
  2. In the list of known networks, drag the desired network to the first place with the mouse.
  3. Click OK and restart your laptop.

On Linux (NetworkManager):

# View priorities (lower number = higher priority)

nmcli con show | grep wifi

Change the priority (for example, for the "home_wifi" network)

nmcli con mod "home_wifi" connection.autoconnect-priority 1

8. Security when connecting to Wi-Fi

Wireless networks are convenient, but they're not always secure. Here are a few rules to help avoid problems:

  • 🔐 Use WPA3: if your router supports WPA3 (and not outdated WEP or WPA), enable it in the settings. This is the most secure encryption standard available today.
  • 🛡️ Disable WPS: function Wi-Fi Protected Setup Vulnerable to brute-force attacks. Disable it in the router's web interface.
  • 👤 Guest networkIf you frequently have guests over, create a separate guest network with limited access to local devices.
  • 🔄 Update your router firmware regularly: Manufacturers are patching vulnerabilities in new versions of software.

If you frequently connect to public networks, consider using VPNThis hides your real IP address and encrypts your traffic. Free options with limitations:

  • ProtonVPN (unlimited traffic, but low speed on the free plan).
  • Windscribe (10 GB of traffic per month).
  • Cloudflare WARP (not a full VPN, but encrypts DNS requests).
⚠️ Attention: Never use public Wi-Fi for online banking or shopping without a VPN. Attackers can intercept traffic on unsecured networks (especially those with the protocol HTTP instead of HTTPS).

FAQ: Frequently asked questions about connecting a laptop to Wi-Fi

My laptop can't detect Wi-Fi, even though my phone has a network. What's the problem?

Most likely, the Wi-Fi adapter on your laptop is disabled or the driver is not installed. Check:

  1. Is the adapter enabled in Device Manager (devmgmt.msc).
  2. Is there a hardware Wi-Fi switch on the laptop case?
  3. Is the driver updated (download it from the laptop manufacturer's website, not via Windows Update).

If the adapter is enabled but there are still no networks, try resetting the network settings: Settings → Network & Internet → Network reset.

How to connect to Wi-Fi without a password (if you forgot it)?

If you have previously connected to this network on this laptop:

  • On Windows: open Settings → Network & Internet → Wi-Fi → Manage known networks, select the network and press PropertiesThe password will be displayed in the field. Network security key (requires administrator rights).
  • On macOS: open Bunch of keys (via Spotlight), find the network name and double-click it. Check the box. Show password.
  • On Linux: passwords are stored in /etc/NetworkManager/system-connections/. Open the network file and find the line psk=.

If you never connected to this network, but it is yours (for example, a home router), reset the router settings using the button Reset (hold for 10 seconds) and connect using the standard password (indicated on the sticker).

Why is Wi-Fi slow on my laptop but fast on my phone?

There may be several reasons:

  • The laptop is connected to a congested channel.: try changing the channel on your router (optimal for 2.4 GHz: 1, 6, 11).
  • The adapter driver is out of date.: update it from the manufacturer's website (especially relevant for Realtek And Broadcom).
  • The laptop is far from the router: Check the signal strength. If it is weak (1-2 bars), try using 5 GHz (if your router supports it) or buy one Wi-Fi repeater.
  • Background updates: On Windows, the network may slow down due to downloading updates. Pause them in Settings → Update & Security.

Also, check if your router itself is limiting your speed. Go to its settings (192.168.1.1) and look at the section Bandwidth Control or QoS.

Is it possible to connect to Wi-Fi without a router (for example, from a phone)?

Yes, if your phone supports the mode access points (hotspot). Here's how to do it:

  • On Android: Settings → Network & Internet → Hotspot & Tethering → Portable HotspotTurn it on and set the network name/password.
  • On iPhone: Settings → Tethering and turn it on Allow others.

After this, connect to the created network as you would to a regular Wi-Fi network. Please note:

  • 🔋 Your phone's battery consumption will increase significantly.
  • 📶 Internet speed will be limited by the speed of the mobile network (4G/5G).
  • 💰 You may be charged for traffic (if you don't have an unlimited plan).
How to connect to a hidden Wi-Fi network?

Hidden networks do not broadcast their name (SSID), but you can connect to them manually:

On 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) and password.

On macOS:

  1. Click on the Wi-Fi icon in the menu bar.
  2. Select Connect to another network.
  3. Enter the network name, security type and password.

On Linux: use the command nmcli dev wifi connect "Network_Name" password "password" hidden yes.

Please note: the network name (SSID) is case-sensitive! If you are unsure of the spelling, please check with your network administrator.