Back to Blog
wifiwindows 11troubleshootinghidden ssid

How to Connect to a Hidden WiFi Network on Windows 11: SSID, Security, and Troubleshooting

Hidden WiFi networks don’t show up in Windows 11’s network list, but you can still connect if you know the SSID, security type, and password. Here are three methods and every fix for when it goes wrong.

How to Connect to a Hidden WiFi Network on Windows 11: SSID, Security, and Troubleshooting
7 min read

A hidden WiFi network is one where the router has been configured to stop broadcasting its SSID — the name that normally appears in your list of available networks. The network still exists and accepts connections; it just won’t announce itself. Windows 11 can connect to hidden networks, but the process is a few steps longer than clicking a visible network in the taskbar tray. This guide covers three methods and the most common failure points.

What You Need Before You Start

Before attempting to connect, gather these three pieces of information from whoever administers the network:

  • SSID — the exact network name, including capitalization and any spaces or special characters
  • Security type — most modern routers use WPA2-Personal or WPA3-Personal; older networks may use WPA or Open
  • Password / passphrase — the WiFi key, which is case-sensitive

Getting the security type wrong is the single most common reason a hidden network connection fails silently in Windows 11. If you’re unsure, start with WPA2-Personal (CCMP) — it covers the vast majority of routers made in the last decade.

Method 1: Add the Network Through Windows Settings

This is the most straightforward approach for most users.

  1. Press Windows + I to open Settings.
  2. Navigate to Network & internet → Wi-Fi.
  3. Click Manage known networks.
  4. Click the Add network button at the top right.
  5. Fill in the fields:
    • Network name: type the exact SSID
    • Security type: select the correct type from the dropdown (WPA2-Personal is the default)
    • Security key: enter the password
  6. Check Connect automatically if you want Windows to reconnect whenever the network is in range.
  7. Check Connect even if this network is not broadcasting — this is essential for hidden networks.
  8. Click Save.

Windows will immediately try to connect. If the credentials are correct and the access point is within range, you’ll be connected within a few seconds. The network will appear in your taskbar tray labeled with its SSID.

Method 2: Add the Network from the Taskbar Tray

An alternative route that skips the Settings app entirely:

  1. Click the WiFi icon in the system tray (bottom-right corner) or press Windows + A to open Quick Settings.
  2. Click the arrow next to the WiFi toggle to expand the network list.
  3. Scroll to the bottom of the list and click Connect to a hidden network if present, or go to Settings as described in Method 1. (On some Windows 11 builds this shortcut appears; on others it does not.)

If the shortcut isn’t visible, Method 1 or Method 3 below are your options.

Method 3: Connect Using the Command Line (netsh)

Power users and IT administrators can add a hidden network profile from an elevated Command Prompt or PowerShell. This is especially useful when deploying profiles to multiple machines.

Step 1 — Create an XML profile

Save the following text as hidden-wifi.xml, substituting your real SSID and password:

<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
  <name>YourSSID</name>
  <SSIDConfig>
    <SSID><name>YourSSID</name></SSID>
    <nonBroadcast>true</nonBroadcast>
  </SSIDConfig>
  <connectionType>ESS</connectionType>
  <connectionMode>auto</connectionMode>
  <MSM>
    <security>
      <authEncryption>
        <authentication>WPA2PSK</authentication>
        <encryption>AES</encryption>
      </authEncryption>
      <sharedKey>
        <keyType>passPhrase</keyType>
        <protected>false</protected>
        <keyMaterial>YourPassword</keyMaterial>
      </sharedKey>
    </security>
  </MSM>
</WLANProfile>

Step 2 — Import the profile

Open Command Prompt as Administrator and run:

netsh wlan add profile filename="C:path	ohidden-wifi.xml"

Then connect immediately:

netsh wlan connect name="YourSSID"

To verify the saved profile and confirm nonBroadcast is set correctly:

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

Troubleshooting: Why Your Hidden Network Won’t Connect

Wrong Security Type Selected

This is by far the most common culprit. If you select WPA2-Personal but the router is running WPA3-Personal (or vice versa), Windows will attempt the handshake, fail silently, and show no error. Log into your router admin panel (typically 192.168.1.1 or 192.168.0.1) and check the Wireless Security page to confirm the exact mode. Routers running WPA2/WPA3 Transition Mode should work with either selection, but trying WPA2-Personal first is a safe bet.

SSID Typo or Case Mismatch

Hidden SSIDs are case-sensitive. HomeNetwork and homenetwork are treated as different networks. Double-check every character, including trailing spaces, which are invisible but break the match.

Profile Saved but Not Connecting Automatically

If Windows saved the profile but won’t auto-connect, confirm that Connect even if this network is not broadcasting is enabled. To check an existing profile, run netsh wlan show profile name="YourSSID" and look for the line Non Broadcast : Yes. If it reads No, delete the profile (Settings → Manage known networks → Forget) and re-add it with the checkbox ticked.

Outdated Wi-Fi Driver

Drivers older than 2022 can have bugs with WPA3 and non-broadcast SSIDs. Open Device Manager (Win + X → Device Manager), expand Network adapters, right-click your WiFi adapter, and choose Update driver. Alternatively, download the latest driver directly from your laptop manufacturer’s support page or from the adapter chipset vendor (Intel, Qualcomm, Realtek).

Router Is Out of Range or Access Point Is Down

Windows will not display an error message if the hidden network is saved but physically unreachable — it silently retries in the background. Move closer to the access point and use a WiFi analyzer app to confirm the AP is transmitting on the expected channel and band.

Security Note: Are Hidden Networks More Secure?

Hiding your SSID is a common security practice, but it provides only cosmetic obscurity. Any wireless scanner (including free Android and Windows tools) can detect hidden networks from the probe requests that connected devices broadcast. True network security comes from strong WPA3 or WPA2 encryption, a long random passphrase, and keeping router firmware up to date — not from hiding the name. See our guide on WPA2 vs WPA3 security for a deeper look.

Quick Checklist

  • Confirm the exact SSID (case-sensitive, no extra spaces)
  • Verify the security type matches the router settings (WPA2-Personal or WPA3-Personal)
  • Check Connect even if this network is not broadcasting when saving
  • Update your Wi-Fi adapter driver if connection silently fails
  • Use netsh wlan show profile name="SSID" key=clear to inspect a saved profile
  • Delete and re-add the profile if auto-connect stopped working

If you’re also experiencing general connectivity issues after joining, run a speed test to confirm the network is actually delivering your expected bandwidth once connected.

Related Articles