How to find your Wi-Fi password on Windows 11

It's quite common to need to connect a new device to an existing wireless network but forget the password. Fortunately, the operating system Windows 11 Stores data about previously used connections securely, allowing you to retrieve it if needed. This is especially important for owners of routers that don't have a factory sticker with data, or if you've changed the security settings yourself.

There are several methods for obtaining this information, from the graphical settings interface, which has become more user-friendly in recent updates, to using the command line for advanced users. Administrative rights These are usually only required for certain methods, so make sure you have access to an account with the appropriate privileges.

In this guide, we'll cover all the current methods so you can choose the one that best suits your situation. Whether you're used to clicking through menus or prefer quick commands, there's a solution. The key is to be consistent and pay close attention to network names.

Using the new Windows 11 settings

In the latest versions of the operating system, Microsoft has significantly redesigned the network connections menu. Now you can view your saved security key directly in the graphical interface, without having to delve into the depths of the Control Panel. This is the simplest and most secure method for most users.

To start, press the key combination Win + Ito open the Settings app. In the left column, select "Network & Internet," then go to the "Wi-Fi" subsection. Here you'll see a list of available networks and control basic adapter functions.

At the bottom of the page, find the "Manage known networks" link or simply click on the properties of your current network. In the window that opens, scroll down to "View network security key." Clicking "View" will display the password, hidden in characters, in plain text.

  • 📱 Open Settings via the Start menu or hotkeys.
  • 📡 Go to the "Network & Internet" section and select Wi-Fi.
  • 👁️ Find the desired network and click "View" next to the key field.

It's worth noting that this functionality may not be available if you're using a corporate version of Windows with Group Policy restrictions. At home, this typically doesn't cause any issues. This method only works for networks to which the computer has connected at least once.

Viewing your password through the Control Panel

The classic method works in all versions of Windows since Windows 7. If you find the new settings interface inconvenient or have seen changes, the Control Panel remains a reliable tool. It stores profiles for all wireless connections.

To get to the desired menu, press Win + R and enter the command ncpa.cplThe Network Connections window will open. Find the "Wireless Network" icon, right-click it, and select "Status." In the dialog box that opens, click "Wireless Network Properties."

In the new window, switch to the "Security" tab. You'll see the "Network Security Key" field, where the characters are hidden behind asterisks. Check the "Show characters as you type" box, and the system will instantly display your password. Administrator privileges may be required to perform these actions.

⚠️ Attention: If the "Security" tab is missing or the fields are grayed out, your account may not have sufficient permissions or your network profile may be corrupted. In this case, try running the command prompt as administrator.

This method is great because it's independent of the Windows Settings interface version. Even if Microsoft changes the menu design again in future updates, the classic Control Panel will likely remain unchanged. This makes this method universally applicable to system administrators.

📊 Which method of viewing your password do you find more convenient?
Through the new Windows 11 Settings
Through the classic Control Panel
Via the command line
I don't need to know this

Using the CMD command line

For those who prefer speed and precision, the command line offers a powerful tool for managing network profiles. With this utility netsh You can not only find out the password but also manage all saved connections. This method is especially useful if the graphical interface is not working correctly.

Launch the Command Prompt as administrator. To do this, right-click the Start button and select Terminal (Administrator) or search for cmd in the search. First, you need to display a list of all saved Wi-Fi profiles.

netsh wlan show profiles

Find the exact name of your network (SSID) in the list. Then enter the command to display a specific profile, adding the key key=clearThis will force the system to display the security key in clear text.

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

In the command output, find the line "Key Content." This will contain your password. Note that the network name in the command must match the profile name exactly, including spaces and capitalization.

  • 💻 Run CMD or PowerShell with administrator rights.
  • 📋 Use the command show profiles to get a list of networks.
  • 🔑 Add a parameter key=clear to display the password.

The advantage of this method is the ability to copy and paste the command, avoiding errors caused by manually entering long network names. Additionally, the command line allows you to quickly export profiles to an XML file for transferring settings to another computer.

What should I do if the network name contains special characters?

If the network name contains quotation marks or other special characters, enclose the network name in double quotation marks in the command, as shown in the example above. This is standard command-line syntax.

Retrieving data via PowerShell

PowerShell is a more modern and flexible alternative to the classic command line. Although for simple tasks, it's often sufficient netshPowerShell allows you to obtain information in a more structured form and integrate it into automation scripts.

Open PowerShell as administrator. Enter the following command to list all profiles and their passwords in a single window. This script will automatically loop through all saved networks and display their names along with their security keys.

netsh wlan show profile name=(netsh wlan show profiles | Select-String -Pattern":" | ForEach-Object { ($_ -split":")[1].Trim }) key=clear | Select-String -Pattern"Key Content"

The result will contain lines with network names and their corresponding passwords. This is convenient if you've forgotten the exact name of your network in the Windows profile list. However, for a one-time view, it's easier to use a command similar to CMD for a single network.

PowerShell also allows you to export profiles to XML using the command ExportProfile, which can be useful for backing up settings before reinstalling the system. Profile files contain all the necessary information for automatic connection.

Method Complexity Admin rights required Speed
Windows 11 Settings Low No High
Control Panel Average Yes Average
Command line Average Yes High
PowerShell script High Yes High

Restoring access via a router

If your computer isn't connected to the network or the profile has been deleted, you can find the password directly in the router settings. This requires physical access to the device or an Ethernet cable connection. This method provides a 100% guarantee of obtaining the current password.

Connect to your router through your browser by entering its IP address (usually 192.168.0.1 or 192.168.1.1). You will need your login and password to access the admin panel. If you haven't changed them, they are often located on a sticker on the bottom of the device (standard admin/admin).

In the router interface, find the "Wireless" or "Wi-Fi" section. The "Security" subsection will display the network name and encryption key (WPA/WPA2 Key). You can also change the password to a more complex one here if you suspect a data leak.

⚠️ Attention: Router interfaces from different manufacturers (Asus, TP-Link, Keenetic, MikroTik) vary significantly. If you can't find the menu item you need, consult the official manual for your model, as the menu layout may vary.

Using this method also allows you to check which devices are currently connected to your network. This is an important feature. security, which allows you to identify unauthorized users and block their access.

☑️ Network security check

Completed: 0 / 4

Common problems and their solutions

Despite the simplicity of the methods described, users may encounter errors. For example, the system may report that the parameters cannot be displayed. This is often due to access rights or corruption of the system files responsible for storing network configurations.

Another common issue is the inability to see the password for a guest network or corporate Wi-Fi with a certificate. In such cases, the password may not be stored explicitly, and authentication occurs via a certificate or domain login/password. For networks with a certificate, password recovery using standard Windows methods is not possible.

If none of these methods help, the only option left is to reset your network settings. In Windows 11, you can do this via Settings → Network & Internet → Advanced network settings → Network reset. Keep in mind that you'll have to re-enter your passwords on all your devices after doing this.

  • 🛠️ Make sure the WLAN Profile Manager service is running.
  • 🔄 Try forgetting the network and reconnecting if the password is known to another device.
  • 🔒 Check your antivirus software to see if it's blocking access to your system network settings.

It's important to understand that if a computer has never connected to this network and hasn't saved a profile, it won't be possible to find the password from that computer using software. In this case, only a router or other device where the password is stored will be able to retrieve it.

Is it possible to find out the Wi-Fi password if I'm not the computer administrator?

For security reasons, viewing saved passwords in Windows is impossible without administrator rights. The system hides this information to prevent standard users from accessing it. You'll need to ask an administrator for the password or use a different device.

Where is the password physically located on the router?

Most modern routers have a sticker on the bottom or back panel. Look for the "WPA/WPA2 Key," "Wireless Password," or "Password" fields. If you've changed the password before, the sticker will show the factory (old) password, which is no longer valid.

Is it safe to use third-party password recovery programs?

Using third-party software carries risks. Many such programs contain viruses or miners. Since Windows provides built-in tools (CMD, settings), there is no need to download questionable software. Trust only official Microsoft methods.

What should I do if I forgot my router admin password?

If you've changed your router's password and forgotten it, your only option is to perform a full reset. To do this, press and hold the small button on the router for 10-15 seconds. This will reset the router to its factory settings, and the Wi-Fi password will be the same as the one on the sticker.