Skip to content
Follow
Windows

How to Hide WiFi Networks in Windows 11

Richard
Written by
Richard
Nov 23, 2021 Updated Jun 19, 2026 4 min read
How to Hide WiFi Networks in Windows 11
How to Hide WiFi Networks in Windows 11

Hiding a WiFi network in Windows 11 prevents its name (SSID) from broadcasting, making it invisible in your list of available networks.

This means your PC will not automatically connect to it, and others won’t easily see its name. You typically do this for enhanced security or to declutter your network list.

For instance, this is a good step if you want to prevent your primary home WiFi network from showing up when you’re using your laptop at a coffee shop.

⚡ Quick Answer

You can hide WiFi networks in Windows 11 by opening Command Prompt as administrator and using netsh wlan add filter commands. Use ssid=YYYYYYYY to block specific networks or ssid=ZZZZZZZZ with permission=allow after permission=denyall to show only your network.

Why hide WiFi networks?

Hiding WiFi networks in Windows 11 helps clean up your list of available connections, making it easier to find and connect to your own network faster.

What happens when you are done?

Once you finish these steps, the blocked networks will disappear from your WiFi menu. They will no longer appear when you click the network icon on your taskbar. This is a form of SSID filtering that keeps your interface clean and improves your Windows 11 network management.

Windows 11 WiFi menu showing a list of available network connections
windows 11 show available wifi network

Warning: Administrative Privileges

Important: To do this, you’ll need administrator privileges. Windows locks down network adapter settings to stop unauthorized changes. If you’re not logged in as an administrator, you’ll get an ‘Access Denied’ error when you try to run these commands.

Command Prompt window running as administrator on Windows 11
windows 11 command prompt administrator

How to block specific networks

You can block specific WiFi networks in Windows 11 by using the Command Prompt to tell your computer which network names (SSIDs) to ignore.

  1. Click the Start button and type cmd.
  2. Right-click ‘Command Prompt’ and select ‘Run as administrator’.
  3. Run these commands to block specific network names (SSIDs):
💻Code
netsh wlan add filter permission=block ssid=YYYYYYYY networktype=infrastructure
netsh wlan add filter permission=block ssid=AAAAAAAA networktype=infrastructure

Replace “YYYYYYYY” and “AAAAAAAA” with the exact names of the networks you want to hide. The `netsh wlan` command is how Windows filters these specific names out of your view.

How to block everything except your own

To hide all WiFi networks except your own in Windows 11, you can use the Command Prompt to set up a filter that blocks everything but your preferred network.

  1. Open the Command Prompt as an administrator.
  2. Run this command to block all networks:
💻Code
netsh wlan add filter permission=denyall networktype=infrastructure

3. Next, run this command to allow only your specific network to show:

💻Code
netsh wlan add filter permission=allow ssid=ZZZZZZZZ networktype=infrastructure

Replace “ZZZZZZZZ” with your network name. This ensures your computer only pays attention to your trusted connection.

How to verify your changes

You can check if your WiFi network filter changes worked in Windows 11 by opening the Command Prompt and typing the command ‘netsh wlan show filters’.

💻Code
netsh wlan show filters

This will display a list of all currently active network filters. If you see your hidden networks listed under the ‘Deny’ section, your changes were successful.

How to revert your changes

If you decide you want to see those networks again, you can easily remove the filters. Use the following command to delete a specific block:

💻Code
netsh wlan delete filter permission=deny ssid="NetworkName" networktype=infrastructure

This command removes the block and restores the network to your visible list.

Summary

Managing your WiFi network list in Windows 11 is simple using Command Prompt commands to block specific networks or allow only your own connection.

Does hiding a network prevent it from being seen by other devices?

No. Using these commands only hides the network on your specific computer. Other devices in your home or office will still be able to see and connect to those networks. This is a local setting that does not affect the actual broadcast signal of the router.

Will these changes persist after a Windows update?

Yes. These filters are stored in the Windows network configuration settings. They will typically remain active even after you restart your computer or install standard Windows updates. You do not need to re-apply these commands unless you perform a major system reset or network settings refresh.

Is there a GUI option to hide networks in 🪟 Windows 11?

No, Windows 11 does not provide a simple graphical user interface (GUI) button to hide specific WiFi networks. You must use the Command Prompt or PowerShell with administrative rights to manage these network filters. This is a technical feature intended for advanced users who need more control.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Change Your Wi-Fi Settings in Windows 11
Windows How to Change Your Wi-Fi Settings in Windows 11
How to Enable or Disable Wi-Fi Settings in Windows 11
Windows How to Enable or Disable Wi-Fi Settings in Windows 11
How to Forget WiFi Networks on Windows 11
Windows How to Forget WiFi Networks on Windows 11
How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *