Saved Wi-Fi hotspots V Windows 10 can create a number of problems: the system automatically connects to weak signals, attempts to connect to networks whose passwords have changed, or simply clutters the list with unnecessary names. Unlike mobile devices, where "forgetting a network" is a two-tap operation, in desktop OS this process is more deeply hidden—and not always obvious.
Many users are faced with the fact that even after manual removal through the interface Windows Settings The network reappears in the list after a reboot. This is due to the way the service operates. WLAN AutoConfig and caching data in the registry. In this article, we'll discuss all current methods — from standard to hidden — that are guaranteed to remove unnecessary networks from the system. We'll pay special attention to cases where a network is "forgotten" or returned after cleaning.
If you are trying to connect to a new access point but Windows 10 Whether your laptop is stubbornly clinging to an old network with an authentication error, or you need to reset it before selling it, these methods will help. Just don't limit yourself to the first method on this list: a complete wipe often requires a combination of steps.
1. Standard method: uninstall via Windows Settings
The easiest and safest method is to use the built-in network management menu. It's suitable for most users and doesn't require administrator rights (unless you're trying to delete a network created by another account).
Open Start → Settings → Network & Internet → Wi-Fi. In the right part of the window, find the block "Managing Known Networks" and click on it. A list of all saved access points will appear. Select the desired network, click on it, and then click the button "Forget".
The network is not used by other devices in the home
Do you remember the password (if you need to connect again)
Automatic connection to this network is disabled in the router settings.
You have administrator rights (if the network was added by a system account)-->
⚠️ Attention: If after deleting the network it appears in the list again, it means that Windows restores it from the profile cache WLANIn this case, move on to the following methods—they affect deeper levels of the system.
This method works for 90% of user networks, but is useless if the network profile was added via group policies (for example, on corporate laptops) or is protected by an administrator password.
2. Uninstall via Control Panel (alternative interface)
IN Windows 10 The legacy Control Panel has been retained, where some settings are duplicated—but sometimes work more reliably. To open it, click Win + R, enter ncpa.cpl and press EnterA window will open. Network Connections.
Then proceed as follows:
- Find a connection Wireless Network (Wi-Fi), right-click on it and select
Properties. - In the new window, go to the tab Wireless Networks (if it is not there, your adapter does not support this interface).
- On the list Preferred Networks select the desired access point and press "Delete".
This method is useful if the network isn't displayed in the modern Settings, but is visible in the classic panel. For example, this happens with profiles created through Netsh or third-party utilities.
Standard Windows Settings
Control Panel (ncpa.cpl)
Command line (netsh)
Registry Editor
Other-->
3. Command line: deleting a profile via netsh
Tool netsh (Network Shell) allows you to manage network settings via the command line. This is a universal method that works even when the GUI refuses to delete a network. Open Command prompt as administrator (Win + X → Command Prompt (Administrator)) and run:
netsh wlan show profiles
This command will list all saved profiles. Find the name of the desired network (case-sensitive!) and run:
netsh wlan delete profile name="NETWORK_NAME"
Replace NETWORK_NAME to the real name (for example, netsh wlan delete profile name="TP-Link_5G"). If the name contains spaces, use quotation marks.
netsh wlan delete profile name= i=
But be careful - after this you will have to re-enter passwords for all Wi-Fi hotspots.-->
⚠️ Attention: If you see an error after running the command "Profile not found", but the network is definitely in the system, check:
- 🔹 Correct spelling of the name (including case).
- 🔹 No hidden characters (such as a space at the end).
- 🔹 Is the command prompt running as administrator?
4. Manual removal via Registry Editor
Registry Windows stores data about Wi-Fi networks in a branch HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\ProfilesDeleting entries from there is a radical method that helps when other methods have failed. Carefully: Incorrect changes to the registry may disrupt the operation of the system.
Steps for cleaning:
- Click
Win + R, enterregeditand confirm the launch. - Follow the path:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles - In the folder Profiles Find subfolders with names in the format
{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}. Open each one, checking the parameter value. ProfileName - it contains the name of the Wi-Fi network. - Delete the folder with the unnecessary network (right click → "Delete").
After this, restart your computer. If the network still returns, check one more registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wlansvc\Interfaces
Profile data may also be stored here.
What should I do if I don't have permission to edit the registry?
If you see an "Access Denied" error when attempting to delete a key, your account doesn't have sufficient permissions. Solutions:
1. Launch regedit as administrator (right-click → "Run as administrator").
2. If you are on a domain, contact your system administrator for permissions.
3. Try to temporarily gain ownership of the key via the context menu (Rights → Advanced → Owner).
5. Reset network settings (nuclear method)
If none of the methods helped, or you want to remove All To immediately reset saved networks (for example, before handing over the laptop to another user), perform a full reset of the network stack. This method also fixes connection issues caused by corrupted profiles.
Go to Settings → Network & Internet → Status and at the bottom of the page find Network ResetClick the button and confirm the action. After the reboot, all Wi-Fi networks, passwords, VPN connections, and other network settings will be deleted.
⚠️ Attention: A network reset will return All network parameters to factory settings, including:
- 🔹 Saved Wi-Fi passwords.
- 🔹Ethernet and VPN settings.
- 🔹 Connection priorities (for example, if you prioritized the 5G network over 2.4G).
This method should only be used as a last resort, as it will require you to reconfigure all connections.
6. Removing via PowerShell (for advanced users)
PowerShell offers more flexible tools for managing Wi-Fi profiles than the standard command line. For example, it can be used to delete profiles that aren't visible in the graphical interface.
Open PowerShell as administrator and run the command to view all profiles:
Get-NetConnectionProfile | Where-Object {$_.InterfaceAlias -like "Wi-Fi"} | Select-Object Name, InterfaceIndex
Remember InterfaceIndex the desired network (for example, 3) and run:
Remove-NetConnectionProfile -InterfaceIndex 3 -Confirm:$false
To remove everyone Wi-Fi profiles use:
Get-NetConnectionProfile | Where-Object {$_.InterfaceAlias -like "Wi-Fi"} | Remove-NetConnectionProfile -Confirm:$false
Common problems and solutions
Even after deleting a network, it may reappear in the list. Let's look at some common causes and troubleshooting steps:
| Problem | Cause | Solution |
|---|---|---|
| The network returns after a reboot. | The profile is restored from the service cache. WLAN AutoConfig or group policy | Use netsh + registry cleaning. Disable the service. WLAN AutoConfig temporarily |
| A network with a Cyrillic name cannot be deleted. | Name encoding in registry or commands | Use the network name in quotes: netsh wlan delete profile name="My_Wi-Fi" |
| "Forget" network is unavailable (the button is inactive) | The profile is protected by group policy or added by a system administrator. | Please contact your administrator or use PowerShell with rights SYSTEM (through PsExec) |
Error "Profile not found" in netsh |
The network name contains hidden characters or is case inconsistent. | Check the name via netsh wlan show profiles and copy it exactly |
If you are working on a corporate network, some profiles may be added automatically through Group Policy or Mobile Device Management (MDM)In this case, the deletion will be temporary—until the next policy update.
Yes, I had to clean the registry.
Yes, but resetting the network helped.
No, standard methods were sufficient.
I haven't tried deleting it-->
FAQ: Answers to Frequently Asked Questions
Is it possible to delete a network without knowing the password?
Yes, deleting a saved Wi-Fi profile doesn't require a password. You only need administrator rights (if the network was added by another user). The deletion process itself doesn't ask for a password—it simply erases the network data from the system.
Why does the network still connect automatically after deletion?
This happens because:
- 🔹 Caching in service WLAN AutoConfig (restarting the service helps).
- 🔹 Router settings, where automatic connection of devices is enabled (disable WPS or Wi-Fi Protected Setup).
- 🔹 Group policies (in corporate networks).
Check your router settings and clear the cache using the command:
netsh wlan delete profile name="*"
How do I delete a network if it doesn't appear in the Settings list?
Use netsh or PowerShell:
- Run Command Prompt as Administrator.
- Do it
netsh wlan show profiles- this will show All profiles, including hidden ones. - Delete the desired profile by name.
If this does not help, check the registry using the instructions from Section 4.
Is it safe to delete Wi-Fi related registry keys?
Yes, if you only delete the profile folders in the branch NetworkList\Profiles. However:
- 🔹 Don't change other parameters in these branches.
- 🔹 Create a backup registry before editing (
File → Export). - 🔹 If you are not sure, use
netshor network reset.
Is it possible to recover a deleted Wi-Fi profile?
No, deleting your network data (including your password) permanently erases it. If you need to connect again, you'll need to:
- 🔹 Re-enter your password.
- 🔹 Restore your profile from a registry backup (if available).
- 🔹 Use third-party utilities to recover passwords (for example, WirelessKeyView), but they only work until they are removed.