Connecting to a wireless network on a laptop with Windows 11 seems like a simple task—until you encounter errors like “No connections available” or “Could not connect to the network.” Even if you are an experienced user, new interfaces and hidden operating system settings can be confusing. This article will not just tell you how to turn on Wi-Fi on Windows 11, but will also help you deal with typical problems: from missing drivers to IP address conflicts.
We will look at all possible scenarios: connecting to open and secure networks, configuration via the control panel and command line, and also provide a checklist for diagnosing problems. We will pay special attention hidden Wi-Fi networks, which are not displayed in the list of available ones, but require manual entry of the SSID - this is relevant for corporate and hotel chains. Are you ready? Let's start with the simplest thing.
1. Basic Wi-Fi connection via taskbar
The fastest way to connect to a wireless network is to use the Wi-Fi icon in the lower right corner of the screen (notification area). This method works in 90% of cases if the adapter drivers are installed correctly and the router is working properly.
Steps to connect:
- 🖱️ Click on the icon Wi-Fi (or "Network") in the taskbar (next to the clock). If there is no icon, check whether the adapter is turned on (more on this below).
- 🔍 Select the one you need from the list of available networks. Protected networks are marked with a 🔒 icon.
- 🔑 If the network is password protected, enter the password and press
Connect. - ✅ Wait for the “Connected” status - a check mark will appear next to the network name.
If you receive a "Unable to connect" error after entering your password, try:
- 🔄 Reboot the router (turn off for 30 seconds).
- 📱 Make sure the password is entered correctly (case is important!).
- 🛠️ Forget the network and connect again (right-click on the network → “Forget”).
- Never
- Nearby
- Often
- Constantly
2. Connect to a hidden Wi-Fi network (no SSID broadcast)
Some networks (for example, in offices or hotels) hide their name (SSID) and are not displayed in the general list. To connect to such a network on Windows 11, you need to manually specify its parameters.
Instructions:
- Open
Settings → Network and Internet → Wi-Fi. - Click
Managing known networks→Add network. - Enter:
- 📡 Network name (SSID) — exact name (check with the administrator).
- 🔐 Security type - usually
WPA2-PersonalorWPA3-Personal. - 🔑 Security key — network password.
Connect automatically and save.Why do networks hide SSIDs?
Hiding the network name (SSID) is an outdated "security" method that only makes it more difficult for legitimate users to connect. In fact, such networks are easily detected using packet sniffers (for example, Wireshark), and their security depends only on the type of encryption (WPA3 is preferable to WPA2).
After saving, the network will appear in the list of available ones, but marked “Hidden network”. To connect, click on it and enter the password.
If you frequently connect to hidden networks, create a desktop shortcut with the command ms-settings:network-wifi - This will quickly open your Wi-Fi settings.
3. Check and enable the Wi-Fi adapter
If the Wi-Fi icon is missing from the taskbar or networks are not detected, the problem may be a disabled adapter. You can check its status in several ways.
Method 1: Through "Options":
- Open
Settings → Network and Internet. - Select a tab
Wi-Fiand make sure the switch is in the "On" position. - If the option is not available, click
Change adapter settings(right).
Method 2: Through Device Manager:
- Click
Win + X→Device Manager. - Expand section
Network adapters. - Find a device with words Wireless, Wi-Fi or 802.11 (For example, Intel Wi-Fi 6 AX200).
- If there is a down arrow (↓) next to the adapter, right-click →
Engage device.
| Problem | Reason | Solution |
|---|---|---|
| No Wi-Fi icon in taskbar | The adapter is disabled or drivers are not installed | Enable the adapter in Device Manager or update the drivers |
| The network is detected but does not connect | Incorrect password or security type | Check your password, forget the network and connect again |
| "No connections available" | The adapter is turned off or the router does not broadcast the network | Turn on the adapter, reboot the router |
| The connection drops after a few minutes | IP conflict or power saving settings | Set a static IP or disable power saving for the adapter |
Check if the adapter is enabled in Device Manager
Make sure the router is working (indicators are on)
Reboot your laptop and router
Try connecting to a different network (for example, from your phone)
Update adapter drivers-->
4. Setting up Wi-Fi via the command line (CMD)
If the GUI doesn't work or you need to automate the connection, you can use command line. This method is useful for administration or troubleshooting of complex problems.
Basic commands for managing Wi-Fi:
# Просмотр всех доступных сетейnetsh wlan show networks
# Подключение к сети (замените "SSID" и "password")
netsh wlan connect name="SSID" ssid="SSID"
# Сохранение сети с паролем
netsh wlan add profile filename="C:\path\to\profile.xml"
# Просмотр текущего статуса подключения
netsh wlan show interfaces
To create an XML network profile file for automatic connection:
- Generate the template with the command:
netsh wlan export profile name="SSID" folder="C:\" - Edit the resulting file in Notepadby specifying the correct password.
- Import the profile to another PC:
netsh wlan add profile filename="C:\Wi-Fi-Profile.xml" user=current
The command line allows you to connect to networks without a graphical interface - this is indispensable for remote configuration or system recovery.
5. Solving common connection errors
Even after setting up Wi-Fi correctly, errors may occur. Let's look at the most common of them and how to eliminate them.
Error: "Could not connect to this network"
- 🔧 Reason 1: Security type incompatibility. Solution - change the router settings to
WPA2-PSK [AES]. - 🔧 Reason 2: IP address conflict. Solution: Set a static IP manually (see next section).
- 🔧 Reason 3: Outdated drivers. Solution - update them via
Device Manageror manufacturer's website (Intel, Realtek, Broadcom).
Error: "Windows can't connect to Wi-Fi"
⚠️ Attention: If this error appears after updating Windows, reset the TCP/IP stack. To do this, open CMD as administrator and run:
netsh int ip resetnetsh winsock reset
ipconfig /flushdns
After rebooting the laptop, the connection attempt should be successful.
Error: Constant connection dropouts
- ⚡ Check your adapter's power saving settings: open
Device Manager→ adapter properties → tabPower management→ uncheckAllow this device to turn off to save power. - 📡 Change the Wi-Fi channel on the router (for example, from automatic to fixed
6or11) to avoid interference from neighboring networks.
6. Setting up a static IP address for Wi-Fi
Default Windows 11 obtains an IP address automatically via DHCP. However, some networks (for example, corporate networks) require manual configuration. This also helps avoid IP conflicts if the router "forgets" devices.
How to set a static IP:
- Open
Settings → Network and Internet → Wi-Fi→ click on the current network. - Scroll down to section
IP Settings→ clickEdit. - Select
Manuallyand fill in the fields:- IP address: for example,
192.168.1.100(the last digit must be unique on your network). - Network prefix length: usually
24. - Gateway: Your router's IP (for example,
192.168.1.1). - DNS: please specify
8.8.8.8(Google) or1.1.1.1(Cloudflare).
- IP address: for example,
⚠️ Attention: Incorrectly specified IP address (for example,192.168.1.1, which is already occupied by the router) will lead to a lack of Internet access. Always check your current settings via the commandipconfig /allinCMD.
7. Update and reinstall Wi-Fi drivers
If the network is not detected or the connection keeps dropping, outdated or corrupt adapter drivers are often to blame. Here's how to update or reinstall them.
Method 1: Automatic update via Windows
- Open
Device Manager(Win + X→Device Manager). - Expand
Network adapters, find your Wi-Fi adapter (for example, Qualcomm Atheros QCA61x4A). - Right click →
Update driver→Automatic search.
Method 2: Manual installation from the manufacturer's website
- 🔍 Find out the exact adapter model in
Device Manager(tabInformation→Equipment ID). - 🌐 Download the driver from the official website:
- Intel: www.intel.ru
- Realtek: www.realtek.com
- Broadcom: via the laptop manufacturer’s website (HP, Lenovo etc.).
- 📥 Install the driver and restart the laptop.
Method 3: Driver Rollback
If the problems started after updating Windows, go back to the previous version of the driver:
- B
Device Manageropen adapter properties. - Go to the tab
Driver→Rollback. - If the button is inactive, download the old version of the driver from the manufacturer's website.
8. Additional settings for stable Wi-Fi operation
To improve the speed and stability of the connection, let's configure several hidden parameters Windows 11.
Disable automatic switching to mobile data
If you have Wi-Fi and mobile Internet enabled at the same time (for example, via a USB modem), Windows can randomly switch between them. To disable this:
- Open
Settings → Network and Internet → Wi-Fi. - Click
Managing known networks→ select your network. - In the section
Propertiesdisable the optionSwitch to mobile network if Wi-Fi is weak.
Setting network priority
If your laptop automatically connects to a weak network (for example, from a neighbor) rather than yours, change the priority:
- Open the list of networks (
Win + A→ Wi-Fi icon). - Forget unnecessary networks (right click →
Forget). - Connect to the desired network and check
Connect automatically.
Energy optimization
By default, Windows limits the performance of the Wi-Fi adapter to save battery power. To disable this:
- Open
Control Panel → Power Options. - Click
Setting up the power plan→Change advanced power settings. - Find a section
Wireless adapter settings→Power Saving Mode. - Install
Maximum performancefor both states (battery and mains).
FAQ: Frequently asked questions about Wi-Fi on Windows 11
🔹 Why doesn’t the laptop see Wi-Fi networks, but the phone does?
This is a typical problem with drivers or a hardware failure of the adapter. Check:
- Is the adapter included in
Device Manager(is there a down arrow). - Are the drivers updated (especially after a Windows update).
- Is the adapter disabled with a physical button (some laptops have a separate Wi-Fi switch).
If all else fails, try connecting an external USB Wi-Fi adapter (for example, TP-Link TL-WN725N).
🔹 How to connect to Wi-Fi without a password (for example, in a cafe)?
Open networks (without a password) connect automatically, but sometimes require confirmation through the browser:
- Connect to the network (it is marked as "Unsecured").
- Open any browser - an authorization window should appear (for example, entering a phone number or agreeing to the rules).
- If the window does not open, go to
1.1.1.1orneverssl.com.
⚠️ Attention: Do not enter personal information on suspicious networks - use a VPN (for example, ProtonVPN) to protect traffic.
🔹 Is it possible to connect to Wi-Fi with 5 GHz if the laptop doesn’t see it?
If your adapter does not support the frequency 5 GHz (check your model specifications), you will not be able to connect to such networks. Solutions:
- 🔄 Configure the router to operate in
2.4 GHz(in the router web interface, usually at192.168.1.1). - 🛒 Buy an external adapter that supports
5 GHz(For example, ASUS USB-AC56).
To find out if your adapter supports 5 GHz, execute in CMD:
netsh wlan show drivers
Look for the line Supported radio types — both frequencies must be indicated there.
🔹 How to distribute Wi-Fi from a laptop on Windows 11?
You can turn your laptop into an access point:
- Open
Settings → Network and Internet → Mobile hotspot. - Select an Internet source (for example,
Ethernet). - Set Network name And Password (minimum 8 characters).
- Enable the option
Mobile hotspot.
If the option is not available, use the command line:
netsh wlan set hostednetwork mode=allow ssid=MyHotspot key=12345678
netsh wlan start hostednetwork
To stop distribution: netsh wlan stop hostednetwork.
🔹 Why is Wi-Fi speed on Windows 11 lower than on my phone?
Reasons for the drop in speed and their solutions:
| Reason | Solution |
|---|---|
| Legacy Wi-Fi standard (802.11n instead of 802.11ac/ax) | Update your adapter or router to Wi-Fi 5 or Wi-Fi 6. |
| Interference from other networks on the 2.4 GHz channel | Switch the router to the channel 5 GHz or select a less crowded channel in the settings. |
| Windows limitation | Disable bandwidth reservation: gpedit.msc → Computer Configuration → Administrative Templates → Network → QoS Packet Scheduler → disable Limit reserved bandwidth. |
| The adapter driver runs in compatibility mode | Update the driver to the latest version from the manufacturer's website. |