How to Hide WiFi Networks in Windows 11
This guide shows you how to hide specific WiFi networks from the list on your Windows 11 computer. By default, your computer shows every WiFi signal nearby. If you want to clean up your list or hide networks you never use, you can block them easily.
Why hide WiFi networks?
Your computer constantly scans for every wireless signal in range. This list often gets cluttered with public hotspots, neighbor networks, or signals you never use. By learning how to hide WiFi networks in Windows 11, you can clean up your connection list. This makes it much easier to find and connect to your own network quickly.
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.
Warning: Administrative Privileges
Important: You must have Administrator privileges to perform these tasks. Windows restricts network adapter settings to prevent unauthorized changes. If you are not logged in as an administrator, you will receive an ‘Access Denied’ error when running these commands.

How to block specific networks
You can hide individual networks by using the Command Prompt. This method creates an SSID blacklist on your computer.
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):
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 tells Windows to filter these specific names from your view.
How to block everything except your own
If you want to hide every network except your own, you can use a ‘deny all’ filter. This is a great way to improve endpoint security by ignoring all surrounding signals.
1. Open the Command Prompt as an administrator.
2. Run this command to block all networks:
netsh wlan add filter permission=denyall networktype=infrastructure
3. Next, run this command to allow only your specific network to show:
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
It is important to check if your filters are active. You can do this at any time by running a simple command. Open your Command Prompt and type:
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:
netsh wlan delete filter permission=deny ssid="NetworkName" networktype=infrastructure
This command removes the block and restores the network to your visible list.
Summary
You can manage your WiFi list in Windows 11 by using simple netsh wlan commands in the Command Prompt. Whether you want to block specific annoying networks or whitelist only your own connection, these steps provide a clean and organized network list. Remember that these changes require administrative access and are specific to your local machine.
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?
Leave a Reply Cancel reply