Where is Wi-Fi in Windows 11: All the ways to enable and configure the network

You have just updated your system to Windows 11 or bought a new laptop but can't find it, where is Wi-Fi turned on?The new OS's interface has changed, and familiar icons are hidden in unexpected places. In this article, we'll explore all possible ways to access a wireless network—from basic ones to hidden ones that come in handy when standard methods don't work.

Problems connecting to Wi-Fi in Windows 11 often occur due to a disabled adapter, outdated drivers, or system crashes. We'll not only show you, Where to find Wi-Fi settings, but we'll also explain how to diagnose common errors—for example, when the network isn't showing up in the list or the connection keeps dropping. All instructions are relevant for the latest system builds, including Windows 11 24H2.

If you are in a hurry, use it. quick way: Click on the network icon in the lower right corner of the taskbar (next to the clock) and check if the slider is turned on Wi-FiBut what if the icon is missing or unresponsive? Read on.

1. Standard method: taskbar and notification center

The most obvious way is through taskbar. IN Windows 11 The network icon (globe or Wi-Fi signal) is located in the lower right corner, next to the date and time. If it's not there, it might be hidden under the arrow. ^ (show hidden icons).

To open the network menu:

  • 🖱️ Left-click on the icon Wi-Fi/Internet (or globe if connected via Ethernet).
  • 📶 In the window that appears, find the block Wi-Fi — available networks are displayed here.
  • 🔄 If the slider Wi-Fi Gray - Move it to the right to turn it on.
  • 🔒 To connect, select a network from the list and enter the password (if required).

If the network icon is missing or unresponsive, try:

  1. Click Win + Ato open notification center - There are tiles here too Wi-Fi.
  2. Check if the adapter is disabled in Device Manager (more on this below).
  3. Restart your computer - sometimes this solves temporary glitches.

2. Via Windows Settings: Full control over networks

If quick access is not enough, go to network settings sectionHere you can not only enable Wi-Fi, but also manage network priorities, configure proxies, and diagnose problems.

How to open settings:

  1. Click Win + Ito open Windows Settings.
  2. Go to Network and InternetWi-Fi.
  3. Turn on the slider Wi-Fi (if it is turned off).
  4. In the block Well-known networks Set up automatic connections to frequently used networks.

Additional options are also available in this section:

  • 🔧 Managing known networks: delete saved passwords or change the connection priority.
  • 📡 Random hardware addresses: Enabling this option increases your privacy on public networks.
  • 🔄 Network reset: useful if your Wi-Fi is unstable (but will delete all saved passwords!).

If you don't see any available networks in the list, check:

  • Is it included? airplane mode (disables all wireless connections).
  • Is the router working (try connecting from another device).
  • Are the adapter drivers updated (more on this in the next section).
📊 How do you usually connect to Wi-Fi?
Via the taskbar
Via Windows Settings
I use hot keys
Another way

3. Hotkeys and hidden combinations

Windows 11 supports multiple keyboard shortcuts, which speed up access to network settings. They're convenient if your mouse or touchpad isn't working.

Basic combinations:

  • 🔑 Win + A — opens notification center with Wi-Fi tile.
  • 🔑 Win + INetwork and Internet — quick access to settings.
  • 🔑 Fn + F2 (or another key with an airplane icon) - turns on/off airplane mode on most laptops.

On some laptops (eg. Lenovo, HP, Dell) There is Wi-Fi hardware switches:

  • 💻 There may be a physical slider or button with an antenna on the case.
  • 🔄 Look for a key with an icon on your keyboard Wi-Fi (usually in a row F1-F12).
What to do if hotkeys don't work?

Check if the function key drivers are installed (they are usually bundled with the chipset drivers). Also, try pressing Fn + Esc - this unlocks the keys F1-F12 on some models.

If the combinations don't work:

⚠️ Attention: On some laptops (especially ASUS or Acer) The function keys require a manufacturer's utility to work, for example, ATK Package or Hotkey ServiceWithout it, the keys Fn may not respond.

4. Device Manager: Check and enable the adapter

If Wi-Fi does not turn on using any of the above methods, the problem may be disabled adapter or outdated drivers. Let's check this through device Manager.

How to open and configure:

  1. Click Win + X and select device Manager.
  2. Expand the branch Network adapters.
  3. Find the device with the words Wireless, Wi-Fi or 802.11 (For example, Intel Wi-Fi 6 AX200 or Qualcomm Atheros QCA61x4).
  4. If there is an arrow ⬇️ next to the adapter, right-click and select Activate the device.

What to do if the adapter is missing or marked with an exclamation mark:

  • 🔄 Update your driver: right-click on the adapter → Update driverAutomatic search.
  • 💾 Install the driver manually: download it from the laptop manufacturer's website (not from the Microsoft!).
  • 🔧 Check for conflicts: If the adapter is marked with a yellow triangle, try removing it (right click → Remove device), then restart your PC - the system will try to reinstall the driver automatically.

If the adapter is not in the list at all:

⚠️ Attention: This may mean that the Wi-Fi module is physically disabled (for example, on some laptops Lenovo it connects via a connector M.2 and may fly out when shaken) or is disabled in BIOS/UEFICheck if the wireless network indicator (usually blue or orange) on the laptop case is lit.

☑️ Diagnosing Wi-Fi adapter problems

Completed: 0 / 4

5. Command Prompt and PowerShell: For Advanced Users

If the graphical interface is unavailable (for example, due to a system crash), you can control Wi-Fi via command line or PowerShellThese methods are also useful for automation or remote configuration.

Basic commands:

Task Command (CMD) Command (PowerShell)
View available networks netsh wlan show networks Get-NetAdapter -Name "Wi-Fi" | Get-NetConnectionProfile
Connecting to the network netsh wlan connect name="Network_Name" Connect-WiFi -SSID "Network_Name" -Password "password" (module required NetAdapter)
Turn Wi-Fi on/off netsh interface set interface "Wi-Fi" enable Enable-NetAdapter -Name "Wi-Fi" -Confirm:$false
Viewing the password of a saved network netsh wlan show profile name="Network_Name" key=clear (look for the line Key Content) (Get-NetConnectionProfile -Name "Network_Name").Password (doesn't always work)

Example: To connect to the network MyWiFi with a password 12345678 through PowerShell, use:

$securePassword = ConvertTo-SecureString "12345678" -AsPlainText -Force

Connect-WiFi -SSID "MyWiFi" -Password $securePassword

If the commands don't work:

  • 🛡️ Make sure you're running the console as administrator.
  • 🔧 Check if the service is enabled Automatic WLAN configuration (enter services.msc in the search and find the service WLAN AutoConfig).
  • 📛 If the network name contains spaces or special characters, enclose it in quotation marks: name="My Network".
How to reset all network settings using CMD?

Run the command netsh int ip reset, then netsh winsock reset and restart your PC. This will reset your network settings to factory defaults, but will not delete saved Wi-Fi passwords.

6. Problems and solutions: why Wi-Fi isn't working

Even if you found, where is Wi-Fi turned on?, the connection may not work. Let's look at common errors and how to fix them.

Problem 1: Network does not appear in the list

  • 🔍 Check if the network is visible on other devices (phone, tablet). If not, the problem is with the router.
  • 📶 Make sure that your router is not hiding your SSID (this option should be disabled in your router settings) Hide SSID or Hide network).
  • 🔄 Reboot your router (unplug it from the power outlet for 30 seconds).
  • 🔧 Update your Wi-Fi adapter driver (see the section about device Manager).

Problem 2: Connection drops or slows down

  • 📡 Check the signal strength: if it is weak (1-2 bars), try moving closer to the router.
  • 🔄 Change the Wi-Fi channel in the router settings (use 1, 6 or 11 for 2.4 GHz).
  • 🛡️ Turn off power saving for the adapter: in Device Manager → adapter properties → tab Power management → uncheck Allow shutdown....
  • 🔧 Run the command ping 8.8.8.8 -t V CMD — if packets are lost, the problem is on the provider’s side.

Problem 3: "No Internet Access" Error When Connecting

  • 🔄 Restart your router and PC.
  • 🔧 Run the commands in CMD (from administrator):
ipconfig /release

ipconfig /renew

ipconfig /flushdns

  • 📛 Check your IP settings: Settings → Network → Wi-Fi → Configure adapter settings Right-click on your connection → PropertiesIP version 4. Make sure it is selected. Obtain an IP automatically.
⚠️ Attention: If after the update Windows 11 Wi-Fi has stopped working. Check the adapter driver version. Some models (e.g., Killer Wireless or old ones Broadcom) require manual installation of drivers, as automatic updates through Windows Update may install incompatible versions.

7. Alternative methods: USB adapters and mobile Internet

If the built-in Wi-Fi module is broken or missing (for example, on a desktop PC), you can use external devices:

USB Wi-Fi adapters

  • 🔌 Connect to the port USB 2.0/3.0 and work as a full-fledged network adapter.
  • 📶 Popular models: TP-Link TL-WN823N, ASUS USB-AC56, D-Link DWA-131.
  • 🔧 After connecting, install the driver from the disk or from the manufacturer's website.

Mobile Internet (USB modem or smartphone)

  • 📱 Connect your smartphone via USB and turn it on Modem mode (on Android or iPhone).
  • 🔌 Use USB modem (For example, Huawei E3372 or ZTE MF823).
  • 📡 In Windows 11 such a connection will be defined as Ethernet or Mobile network.

Ethernet via Powerline adapters

  • ⚡ Transmits internet through electrical wiring—useful if the router is far away and the Wi-Fi is weak.
  • 🔌 You need a set of 2 adapters (for example, TP-Link AV600).
  • 📶 Speed ​​depends on the quality of the wiring, but is usually more stable than Wi-Fi.

If you are temporarily without Wi-Fi but need internet:

⚠️ Attention: When connecting via USB modem or smartphone, keep an eye on your data plan—mobile internet can quickly drain your data, especially if updates are running in the background. Windows or cloud services.

FAQ: Frequently asked questions about Wi-Fi in Windows 11

❓ Why did the Wi-Fi icon disappear after updating Windows 11?

This is a common issue after major updates. Try:

  1. Restart your PC.
  2. Check if the icon is hidden: Settings → Personalization → Taskbar → Taskbar behavior → Show icons on the taskbar.
  3. Update your adapter driver via device Manager.
  4. If nothing helps, create a new user in the system - sometimes the problem is related to a damaged profile.
❓ How do I connect to a hidden Wi-Fi network?

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

  1. Open Settings → Network & Internet → Wi-Fi → Manage known networks.
  2. Click Add a network.
  3. Enter the network name (SSID), security type (WPA2-Personal or other) and password.
  4. Save and connect.

You can also use the command:

netsh wlan connect name="Hidden_Network_Name" ssid="Hidden_Network_Name" interface="Wi-Fi"
❓ The Wi-Fi connects, but there's no internet. What should I do?

The reasons may be different:

  • 🔧 Check your settings IP And DNS (must stand on Auto).
  • 🔄 Restart your router and PC.
  • 🛡️ Disable your VPN or proxy (they may block traffic).
  • 📡 Check if your antivirus is blocking network connections (for example, Kaspersky or Avast).
  • 🔧 Complete in CMD (from administrator):
netsh winsock reset

netsh int ip reset

ipconfig /flushdns

If the problem persists, contact your provider (there may be a problem on their end).

❓ How do I find out the password for my current Wi-Fi network?

If you are connected to the network but have forgotten your password:

  1. Open Settings → Network & Internet → Wi-Fi → Manage known networks.
  2. Select your network and click Properties.
  3. Scroll to the block Password and press Show.

Or through CMD:

netsh wlan show profile name="Network_Name" key=clear

Look for the line Key Content - this is the password.

❓ Is it possible to enable Wi-Fi via BIOS?

No, in BIOS/UEFI you can only turn off Wi-Fi adapter (if available). This is usually called Wireless LAN, WLAN or Wi-Fi and is located in the section Advanced or Onboard Devices.

If the adapter is disabled in BIOS, it won't be visible in Windows, and it can only be turned on through BIOS (usually by key F2, Del or Esc when booting the PC).