How to Delete a Saved Wi-Fi Network in Windows 10

Many users are familiar with the situation where the operating system automatically connects to an invalid or weak signal source. This often happens after changing a router, when the network name remains the same, but the password or encryption type has changed. Instead of requesting a new access key, Windows 10 tries to use old, no longer relevant data, which leads to endless connection errors.

The solution lies in completely clearing the list of known wireless networks. This forces the computer to forget previous settings and start the authorization process again, as if it were first encountering the access point. Below, we'll cover all available methods in detail, from the graphical interface to advanced utilities.

It's worth noting that deleting a network profile doesn't affect other system files. This is a safe operation that helps resolve IP address conflicts and DNS errors that often occur when using the same hardware for long periods of time, without reinstalling drivers.

Removing settings via the graphical interface

The easiest and most obvious way to forget an unwanted network is to use the built-in Settings menu. This method is ideal for those who don't want to delve into the technical details of the command line. However, in recent versions of Windows 10, Microsoft has slightly changed the layout of these elements, which can cause confusion.

To begin, you need to open the Start menu and select the gear icon or press the combination Win + IIn the window that opens, go to the section Network and Internet, and then select the tab Wi-Fi in the left column. Here you'll need to find the "Manage known networks" link.

A list of all saved profiles will appear. Find the desired network in the list, click it, and press the "Forget" button. The system will immediately delete all saved keys and security settings for the selected SSID. If you plan to connect to it again, you will need to re-enter the password.

  • 📱 Open Settings via the Start menu or hotkeys.
  • 📡 Go to the Network and Internet section, then to the Wi-Fi subsection.
  • 🗑️ Find "Manage known networks" and select the target profile.
  • ✅ Click the "Forget" button to completely delete the data.

⚠️ Attention: If you're within range of the network you're deleting, your computer may attempt to automatically reconnect immediately after clicking "Forget" if the profile isn't deleted before the scan completes. It's best to perform this procedure while out of range of the router or by temporarily disabling your Wi-Fi adapter.

In some corporate environments or when using certain driver versions, the "Forget" button may be disabled. In this case, the graphical interface is blocked by security policies or driver errors, requiring more powerful management tools.

📊 How often do you change your Wi-Fi password?
Once a month
Once every six months
Once a year
I never change

Using the Command Prompt (CMD)

For system administrators and advanced users, the command line remains the most effective tool. netsh (Network Shell) allows you to manage network interfaces with a level of precision unavailable with the standard GUI. This method is especially useful when you need to delete multiple profiles at once or when the GUI is not working correctly.

Run the command prompt as administrator. To do this, enter cmd In the search box, right-click on the result and select the appropriate option. The first step is to view a list of all saved profiles on the current computer.

netsh wlan show profiles

The output will show a list of all networks. Find the exact name of the one you want to delete. Note that spaces and case are important. If the network name contains spaces, it must be enclosed in quotation marks.

The command to remove is as follows:

netsh wlan delete profile name="Your_Network_Name"

After entering the command, the system will display a message confirming the profile was successfully deleted. If there are multiple networks with the same name (for example, different profiles for different users), the command will delete them all from the global storage. This is powerful. cleaning tool, which leaves no traces in the user's registry.

  • 🖥️ Launch CMD with administrator rights through the search.
  • 📜 Enter the show profiles command to check for network availability.
  • 🔑 Use the delete profile command with the exact network name.
  • 🔄 Restart your computer to apply the changes.

☑️ Check before deletion

Completed: 0 / 4

⚠️ Attention: Be extremely careful when entering commands. Remote via netsh The profile cannot be restored via the "Trash" or "Cancel" button. The only way to regain access is to know the current password and reconnect.

Removing via PowerShell

PowerShell is a more modern alternative to the classic command line, offering advanced scripting capabilities and an object-oriented approach. It also uses commands to manage Wi-Fi profiles. netsh, but the execution context may differ.

Open PowerShell as an administrator. The interface will look slightly different than CMD, but the command syntax remains the same. This is convenient if you already use PowerShell for other system administration tasks and switching windows.

You can use the same workflow: first review the profiles, then delete the one you need. However, PowerShell allows you to create scripts for bulk deletion. For example, you can create a file .ps1, which will clear all profiles except the home one.

$profiles = netsh wlan show profiles | Select-String "All user profiles" -Context 0,1

foreach ($profile in $profiles) { netsh wlan delete profile name=$profile }

This approach requires knowledge of PowerShell syntax, but it's indispensable in corporate networks where you need to quickly clear the network cache on dozens of computers. For the average home user, the standard delete-by-name command is sufficient.

Why is PowerShell better than CMD?

PowerShell works with objects, not just text. This allows you to create complex command chains (pipelines), filter results, and automate network deletions on multiple computers simultaneously via remote control.

Cleaning via the Windows registry

The Windows registry is a centralized database of operating system configurations. All Wi-Fi profiles, including hidden security settings and encryption keys, are stored in special registry sections. Direct editing allows you to delete even "zombified" entries that cannot be removed using standard methods.

To access the data, click Win + R, enter regedit and press Enter. You need to navigate to the following path:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles

Inside the folder Profiles You'll see a multitude of subfolders named in GUID format (a set of random characters). To find the network you need, click on each folder and look at the parameter ProfileName in the right part of the window. Once you find the name you need, you can delete the entire folder with the corresponding GUID.

Registry parameter Description Data type
ProfileName Readable network name (SSID) REG_SZ
Category Network Type (Private/Public) REG_DWORD
DateCreated Date of first connection REG_BINARY
Description Network Description REG_SZ

After deleting the registry entry, you must restart your computer. Only after a reboot network stack Windows will reread the configuration and remove the deleted profile from the list of available profiles. This method is considered "heavy artillery" and is used only in extreme cases.

Resetting Windows 10 Network Settings

If none of the above methods help, or if the problem is systemic (for example, constant connection drops or an inability to obtain an IP address), consider a full network reset. This function returns all network components to their factory settings.

Search for "Network Reset" or go to Settings → Network & Internet → StatusAt the bottom of the page, you'll find a link labeled "Network Reset." Clicking it and confirming the action will initiate a process that will remove and reinstall all network adapters, as well as clear all saved Wi-Fi profiles.

The computer will automatically reboot after 5 minutes (or immediately if you don't cancel the timer). After restarting, you'll need to reconfigure your internet connection, enter your Wi-Fi passwords, and possibly reconfigure file sharing settings.

  • 💣 A radical method for solving any network problems.
  • 🔄 Deletes all Wi-Fi and Bluetooth device profiles.
  • 🛠️ Reinstalls network adapters and resets TCP/IP.
  • 🔐 Requires re-entering all passwords after reboot.

⚠️ Attention: The network reset function is independent of the driver version. If the driver is deeply corrupted, a reset may not help, and you will need to manually reinstall the device software through Device Manager.

Common problems and their solutions

Even after deleting the profile, users may find that Windows 10 continues to connect to the old network or fails to detect the new one. This is often due to the DNS cache or the WLAN AutoConfig service.

If the network is removed but the computer still tries to connect, try disabling the service. WLAN AutoConfig. Open services.msc, find the service, stop it, and then start it again. This will force a restart of the airspace scanning process.

It's also worth clearing the DNS cache, as old records may conflict with the new router settings. In the command line, run the command ipconfig /flushdnsThis will not delete the Wi-Fi profile, but it will resolve name resolution issues after changing hardware.

What should I do if my profile is returned after deletion?

If the Wi-Fi profile reappears immediately after deleting it, check if you've configured your settings to sync via your Microsoft account. Disable password syncing under "Accounts" -> "Sync your settings."

Questions and Answers (FAQ)

Will the Wi-Fi profile be deleted for all users of the computer?

When uninstalling via the command line with administrator rights (netsh wlan delete profile) The profile is deleted globally for all users on the system. If you use the graphical interface in the settings menu, the profile may only be deleted for the current account, depending on the Windows version and profile type.

Is it possible to restore a deleted network without a password?

No, if you forget the network, Windows deletes the saved security key. To reconnect, the system will ask for the password again. If you don't remember the password, you can find it in the router settings or on another device where the network is saved, but Windows itself doesn't store passwords in cleartext for deleted profiles.

Why is the "Forget" button inactive (gray)?

This may occur if you're using a guest account without administrator rights, or if the network profile is managed by your organization's group policies. The button may also be unavailable if a connection or driver update is currently in progress.

Does deleting a network affect internet speed?

Clearing the network list itself doesn't increase speed. However, if you had many conflicting profiles with the same names (SSIDs) but different security settings, deleting unnecessary profiles can speed up the connection process and eliminate authorization errors, which indirectly improves connection stability.