How to display available Wi-Fi networks on your computer: all the methods

Search available Wi-Fi networks on a computer is a basic task that every user faces. However, even in 2026, many don't know all the ways to display a list of access points, especially if the standard tray icon isn't working or is hidden. This article will reveal all possible methods — from classic to little-known, including command line, PowerShell, and hidden features of operating systems.

We will consider not only standard solutions for Windows 10/11, but also alternative options for macOS And Linux (Ubuntu, Debian, Arch). We'll pay special attention to situations where networks aren't displayed at all—this could be due to a disabled adapter, outdated drivers, or power settings. At the end of the article, you'll find FAQ with answers to frequently asked questions and a table comparing methods by speed and reliability.

1. The standard method via the taskbar (Windows)

The most obvious method is to use the icon Wi-Fi in the lower right corner of the screen (tray). However, even here there are nuances that many people don't know about.

To open the list of networks:

  • 🖱️ Left-click on Wi-Fi icon (stylized "antenna" or "fan" of stripes). If there is no icon, click on (hidden icons) and find it there.
  • 🔄 If the list is empty, check if it is enabled Airplane mode (airplane in the tray). It blocks all wireless connections.
  • 🔍 In Windows 11 the icon may be hidden under the button Net (globe or monitor icon with a connector).

If nothing happens after clicking, the problem may be in disabled adapterTo check its status:

  1. Click Win + X → select device Manager.
  2. Expand the branch Network adapters.
  3. Find the device with the words Wireless, Wi-Fi or 802.11 in the title. If there's an arrow ⬇️ next to it, right-click and select Engage.

2. Command Line: Quick Network Browsing Without a GUI

If the graphical interface is not available (for example, because explorer.exe crashed) or you need detailed technical information about networks, use command lineThis method works even in Safe Mode (safe mode).

Open CMD as administrator (Win + XTerminal (Administrator)) and enter:

netsh wlan show networks mode=bssid

The command will output:

  • 📡 SSID (network names)
  • 🔒 Security type (WPA2-PSK, WPA3, open networks)
  • 📶 Signal level in percent
  • 📌 BSSID (MAC addresses of access points) - useful for binding to a specific router in apartment buildings

For short list without technical details, use:

netsh wlan show networks
What to do if the command doesn't work?

If you see the error "No wireless interfaces" after entering the command, this means that:

1. The Wi-Fi adapter is disabled either physically (using the button on the laptop) or software-based.

2. Incorrect drivers are installed (for example, for Ethernet instead of Wi-Fi).

3. The service is missing from the system WLAN AutoConfig (check in services.msc).

3. PowerShell: Advanced Wi-Fi Network Analysis

PowerShell offers more options for working with Wi-Fi than the classic one CMDFor example, here you can filter networks by signal strength or security type.

Launch PowerShell as administrator and run:

(Get-NetAdapter -Physical | Where-Object {$_.MediaType -eq "Native 802.11"} | Get-NetConnectionProfile).InterfaceAlias | ForEach-Object { netsh wlan show networks interface=$_ }

This command:

  • 🔍 Automatically finds everything Wi-Fi adapters in the system.
  • 📊 Displays networks for each adapter separately (relevant for PCs with multiple Wi-Fi modules).
  • 🛡️ Shows channels And strip width (20/40/80 MHz), which helps in interference diagnostics.

For export a list of networks to a file (for example, for analysis):

netsh wlan show networks mode=bssid | Out-File -FilePath "$env:USERPROFILE\Desktop\WiFi_Networks.txt"
📊 Which method of viewing Wi-Fi networks do you use most often?
Via the taskbar
Command line
PowerShell
Special programs
I don't know any other ways

4. Special programs for Wi-Fi scanning

Standard Windows tools only show basic information. deep analysis (Noise level, busy channels, neighboring networks) Use third-party utilities. They are especially useful if you need:

  • 📡 Select the least loaded channel for your router.
  • 🔍 Find "hidden" networks (with SSID broadcast disabled).
  • 📈 Track signal changes over time.

Top 3 free programs:

Program Peculiarities Link (official)
WiFi Analyzer (Microsoft Store) Channel load charts, channel selection recommendations, support Windows 10/11. Microsoft Store
inSSIDer Advanced signal analysis, scan history, and CSV export. A paid version with more features is available. meta.geektools.com
Acrylic Wi-Fi Home Support 802.11ac/ax, attack detection (deauth, evil twin), packet inspector. acrylicwifi.com

Attention: programs like WireShark or Airodump-ng require monitor mode, which in Windows is enabled only with additional drivers (for example, Npcap). Without them, they won't see the network.

Make sure your Wi-Fi adapter supports monitor mode (check the model on the manufacturer's website)

Disable VPN (it may block scanning)

Close programs that actively use the network (torrents, online games)

Update adapter drivers (especially for older laptops)

-->

5. View Wi-Fi networks on macOS and Linux

On MacBook or PC with Linux The network search algorithm is different. Let's consider both options.

macOS (Ventura, Sonoma, Monterey):

  • 🍎 Click on Wi-Fi icon in the top panel (right side). If it is not there, go to System Preferences → Network → Wi-Fi and activate the display.
  • 🔄 To force refresh the list, hold Option (⌥) and click on the Wi-Fi icon.
  • 📊 For terminal: open Terminal and enter /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -s.

Linux (Ubuntu/Debian/Arch):

  • 🐧 In most distributions, use nmcli (NetworkManager):
nmcli device wifi list
  • 📶 For detailed information (including hidden networks):
sudo iwlist wlan0 scanning | grep ESSID

Replace wlan0 the name of your adapter (you can find out using the command ip a).

6. Why networks are not displayed: troubleshooting

If the Wi-Fi network list is empty, the cause could be either software or hardware related. Let's take a look. top 5 reasons and ways to eliminate them.

1. The Wi-Fi adapter is disabled:

  • 🔌 Check on laptops physical switch or a keyboard shortcut (eg Fn + F2 on Lenovo, Fn + F12 on HP).
  • 🖥️ On your PC, make sure the adapter (USB or PCIe) is connected to the motherboard.

2. Driver issues:

  • 🔧 Open device ManagerNetwork adaptersIf there's an exclamation mark next to your Wi-Fi device, update your driver:
  • 🔄 Right-click → Update driverAutomatic search.
  • 💻 For manual installation, download the driver from the manufacturer's website (Intel, Qualcomm Atheros, Realtek).

3. WLAN AutoConfig service is disabled:

  • 🛠️ Click Win + R → enter services.msc → find WLAN Automatic Configuration Service.
  • 🔄 Make sure the status In progress, and the launch type is Automatically.

4. Power settings:

  • ⚡ In Windows The adapter may turn off to save power. To fix:
  • 🔧 Go to device Manager → Wi-Fi adapter properties → tab Power management.
  • 🚫 Uncheck the box Allow the computer to turn off this device to save power.

5. Interference or blocking:

  • 📡 Check if the router is in the "Secure Mode" mode. 802.11r (Fast Transition) - some adapters do not support it.
  • 🛡️ Antiviruses (Kaspersky, Avast) may block scanning. Temporarily disable network protection.

7. Alternative methods: hotkeys and hidden functions

Few people know, but Windows has hidden keyboard shortcuts and Wi-Fi features. They save time and work even if the interface crashes.

Hot keys:

  • 🔑 Win + A → tile Wi-Fi (quick access to Windows 10/11).
  • 🔑 Win + INetwork and InternetWi-Fi (direct link to settings).

Hidden commands:

  • 📋 To export a list of networks to the file for analysis:
netsh wlan export profile key=clear folder="%USERPROFILE%\Desktop\WiFi_Profiles"
  • 🔄 For forced list update (if networks do not update automatically):
netsh wlan connect name="NETWORK_NAME" ssid="NETWORK_NAME" interface="Wi-Fi"

Developer Mode (Windows 11):

  • 🛠️ Turn on Developer mode V Settings → System → For developers.
  • 📊 This will give you access to advanced diagnostic tools, including Wi-Fi Direct And Miracast.

FAQ: Frequently asked questions about browsing Wi-Fi networks

❓ Why doesn't my computer see 5 GHz networks, but only 2.4 GHz?

This is due to the limitations of your Wi-Fi adapter or drivers. Check:

  • 🔧 Does the adapter support the standard? 802.11ac (5 GHz). You can find out in Device Manager or on the manufacturer's website.
  • 🔄 Update your driver to the latest version.
  • 📡 In your router settings, make sure the 5 GHz network is enabled and not hidden.

On some laptops (for example, older models Dell or HP) 5 GHz is disabled by default in BIOS.

❓ Is it possible to see the password for a connected Wi-Fi network?

Yes, if you are already connected to the network. Windows:

  1. Open CMD on behalf of the administrator.
  2. Enter: netsh wlan show profile name="NETWORK_NAME" key=clear.
  3. Find the line Key content - this is the password.

IN macOS the password is stored in Connected Keys (open Keychain Access → find the network name).

❓ How to find hidden Wi-Fi networks (without broadcasting SSID)?

Hidden networks don't broadcast their name (SSID), but you can connect to them if you know the name and password. To find them:

  • 🔍 In Windows: use the command netsh wlan show networks mode=bssid - hidden networks will be marked as Hidden network.
  • 🐧 In Linux: sudo iwlist wlan0 scanning | grep -B 5 "hidden".
  • 📱 In mobile applications (for example, WiFi Analyzer for Android) hidden networks are displayed as [Hidden].

⚠️ Attention: Connecting to hidden networks is less secure than to regular ones - they are more difficult to control.

❓ Why did networks stop displaying after a Windows update?

This is a typical problem after major updates (for example, switching from Windows 10 on 11). Reasons:

  • 🔧 The Wi-Fi adapter drivers have been reset.
  • 🛡️ Security settings have been updated (for example, support has been disabled) WPA3).
  • 📋 Service settings have been reset WLAN AutoConfig.

Solution:

  1. Reinstall the driver from the manufacturer's website (not via Windows Update!).
  2. Check your adapter settings in Device Manager (tab Additionally).
  3. Perform a network reset: Settings → Network & Internet → Network reset.
❓ How do I display networks if the Wi-Fi icon has disappeared from the tray?

If the icon has disappeared, try:

  • 🔄 Restart Conductor (explorer.exe): open Task Manager → find ConductorRestart.
  • 🛠️ Enable the icon display manually:
Settings → Personalization → Taskbar → Notification area → Turn system icons on or off → Wi-Fi (On)
  • 🔧 If the icon is gray and inactive, check the service WLAN AutoConfig (see section 6).