How to View Your Wi-Fi Password on Windows 10: A Step-by-Step Guide

It's common to need to connect a new device to the network but forget the password. Fortunately, the operating system Windows 10 Stores access keys to previously connected access points in a secure vault. This allows you to easily recover lost data without having to reset the router or contact your ISP.

There are several methods for extracting this information, from standard graphical interfaces to advanced console commands. The method you choose depends on whether you're currently connected to the network and your level of technical expertise. In this article, we'll cover all the current solutions in detail.

Some methods require administrator privileges, so make sure you have access to an account with the appropriate privileges. Also, keep in mind that your organization's security policies may block some of the tools described below if you're working on a corporate computer.

Viewing a password through the Windows graphical interface

The easiest and most secure way to find the access key is to use standard operating system tools. This method is ideal for those who prefer visual menus and don't want to mess with the command line. It only works if your computer is currently connected to the desired Wi-Fi network.

First, you need to open the Network Control Panel. This can be done through the context menu of the network icon in the system tray or through the system settings. Graphical interface Windows 10 hides your password by default for security purposes, displaying it as dots. However, by clicking the appropriate button, you can see the hidden characters.

The process is as follows: right-click on the Wi-Fi icon in the lower right corner of the screen and select Open Network & Internet SettingsIn the window that opens, find the link Network and Sharing Center (usually it is located at the bottom of the window or in the "Status" section).

In the Control Center, find your active connection (the blue link with your network name) and click on it. A status window will open, where you need to click the Wireless network properties. Go to the tab Security and check the box next to the item Show entered characters.

⚠️ Attention: If the "Security" tab is missing or the button is grayed out, this may mean the network profile has been deleted or corrupted by system errors. In this case, try reconnecting to the network again with the password, or use the other methods described in this article.

After removing the camouflage in the field Network security key The desired character combination will be displayed. Write it down or copy it for use on other devices. This method is most reliable for the current active session.

Using the CMD command line to recover the key

For more experienced users or in situations where the graphical interface doesn't work correctly, the command line is ideal. netsh (Network Shell) allows you to manage network settings and retrieve saved profiles along with passwords in plain text.

The first step is to launch the console with administrator rights. Click Win + X and select Windows PowerShell (Administrator) or enter cmd in search, right click and select Run as administratorWithout elevated privileges, the command will not work.

First, you need to find out the exact name of the network profile if you don't remember it. Enter the command netsh wlan show profiles and press Enter. The system will display a list of all saved networks. Find the desired name in the list.

Now we'll use the command to display details for a specific profile. The syntax is:

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

Replace Network_Name to the actual name of your Wi-Fi network. Please note that if the name contains spaces, quotation marks are required. In the command output, find the section Security parameters. Line Key content will contain your password.

What to do if the command returns an error?

The error "Group Policy cannot find your profile" means that the profile was saved only for the current user, but the console was run as a different user. Try adding the user=all parameter, although simply running as administrator usually resolves the issue.

This method is advantageous because it allows you to access information even about networks you're not currently connected to, but which were previously saved in the system. This is especially useful when migrating to a new router and needing to reconnect multiple devices.

📊 What is your most common method for recovering passwords?
Via network properties (GUI)
Via the command line (CMD)
Via PowerShell
Using third-party programs

Retrieving data via PowerShell

In modern versions Windows 10 PowerShell is becoming a preferred alternative to the classic CMD. It has a more powerful syntax and better system integration. The method is similar to using netsh, but may be more convenient for scripting.

Open PowerShell as administrator. To get a list of all profiles and their passwords in a more readable format, you can use the following script. It will automatically scan all saved networks.

$networks = netsh wlan show profiles

foreach ($line in $networks) {

if ($line -match"User Profile") {

$name = $line.Split(":")[1].Trim

$pass = netsh wlan show profile name="$name" key=clear | Select-String"Key Content"

Write-Host"SSID: $name"

Write-Host"Password: $($pass.Split(':')[1].Trim)"

Write-Host"-------------------"

}

}

This script will list all networks known to your computer and their corresponding passwords. This can be useful for security audits: you can see which open or suspicious networks your PC has ever connected to.

Using PowerShell, you can also export this data to a text file for later analysis or printing. Simply add output redirection. > C:\wifi_passwords.txt to the end of the command to save the result.

Finding the password in the router's web interface

If none of the computer-based methods work (for example, the profile was deleted and you still need to connect), the only option is to turn to the source of the signal—the router. To do this, you need to access its administrative panel.

Make sure your PC is connected to the router via Wi-Fi (even without internet) or a LAN cable. Open a browser and enter the device's IP address. Most often, this is 192.168.0.1 or 192.168.1.1The exact address is indicated on the sticker on the bottom of the router case.

You'll need to enter your administrator login and password. If you haven't changed them, they'll be on the sticker (often admin/admin). After logging in, the interface may vary depending on the model (TP-Link, ASUS, D-Link, Keenetic), but the logic is the same.

Look for the section called Wireless, Wi-Fi, Wireless network or WLANThere should be a tab inside. Security (Security) That's where the field is located. WPA Pre-Shared Key or Password.

Router brand Standard address Menu section Tab
TP-Link 192.168.0.1 Wireless Wireless Security
ASUS 192.168.1.1 Wireless network General / WPA
D-Link 192.168.0.1 Wi-Fi Security settings
Keenetic 192.168.1.1 My Networks and Wi-Fi Home network

Changing the password in this interface will change it for all devices. If you just want to know the current key, just copy it from there. Don't forget to save the settings if you made any changes by clicking Save or Apply.

⚠️ Attention: Router firmware interfaces are frequently updated. The menu layout may differ from that described. If you can't find the item you need, consult the official manual for your specific model on the manufacturer's website.

Third-party password recovery utilities

There are many specialized programs that automate the process of extracting saved keys. These are useful if standard Windows methods fail for some reason or are inconvenient for regular use.

One of the most popular and time-tested snails is WirelessKeyView from NirSoft. This portable program requires no installation. It scans the Windows registry and displays a list of all networks and their keys in a convenient table.

  • 🔍 WirelessKeyView: A lightweight, free utility that displays HEX and ASCII key codes. Ideal for quick copying.
  • 📡 WiFi Password Revealer: A simple interface with large buttons, suitable for beginners. It allows you to quickly copy a password to the clipboard.
  • 🔐 Magical Jelly Bean WiFi Password Revealer: Another reliable tool that also allows you to recover forgotten passwords from other network adapters.

When using third-party software, it's important to exercise caution. Download programs only from the developers' official websites to avoid introducing malware. Antivirus programs may react to utilities such as "RiskWare" or "HackTool" because they access sensitive data.

☑️ Security check when using software

Completed: 0 / 4

The main advantage of such programs is the ability to export a list of all passwords to an HTML, XML, or text file. This is convenient for backing up network settings before reinstalling the operating system.

Common problems and solutions when restoring access

Despite the simplicity of the methods described, users may encounter technical difficulties. These issues are often related to access rights, corrupted system files, or specific Group Policy settings.

If the CMD command returns the error "The system cannot find the file specified," check the spelling of the profile name. Case and spaces are important. Use the show profiles command again and copy the name exactly.

On corporate networks, access to the registry and network settings may be blocked by the domain administrator. In this case, standard methods will not work. The only solution is to contact your organization's IT department.

⚠️ Attention: If you attempt to obtain someone else's Wi-Fi network password without the owner's permission, you are breaking the law. Use this information only to restore access to your own networks or networks to which you have legal access.

It's also worth remembering that if the router was reset to factory settings, none of the software methods will help you find the new password, as it hasn't yet been saved on your PC. In this case, the only solution is to use the sticker on the device or access the router settings.

Is it possible to find out the password if the computer has never connected to this network?

No, Windows software methods only work with saved profiles. If the PC didn't know the password, it couldn't save it. The only options in this case are physical access to the router or polling connected devices.

Is it possible to view a Wi-Fi password on Windows 10 without administrator rights?

In the default system configuration, no. Accessing security keys requires administrator privileges. However, if you're already connected to the network, you may sometimes (rarely) see the password in the network properties graphical interface, unless the security policy prohibits it. More often than not, the system will prompt for the administrator password to display the key.

What should I do if I forgot my router password to access the settings?

If you changed the password for your router's web interface (not the Wi-Fi password, but the administrator password) and forgot it, it can't be recovered using software. You'll need to reset the router to factory settings (press the Reset button on the router), after which the login and password will be reset to the ones on the sticker.

Where are Wi-Fi passwords physically stored in Windows 10?

Passwords are stored in a protected section of the Windows registry and in system configuration files. They are encrypted and linked to the user account. Therefore, decrypting and displaying them in clear text requires administrator privileges or specialized utilities that can access these storage locations.

Are password recovery programs safe to use?

Using trusted utilities from reputable developers (such as NirSoft) is safe if they are downloaded from an official source. However, since such programs access sensitive data, antivirus programs may flag them as potentially unwanted. Always scan files before running.

How to transfer a password from a phone to a PC without entering it?

If you have Android or Windows, you can use the Nearby Share feature or a QR code. Many smartphones can generate a QR code when connected to Wi-Fi. This code can be scanned with your PC's camera (if supported) or another person's phone to instantly connect without typing.