How to View Saved Wi-Fi Passwords in Windows 10: A Step-by-Step Guide

Forgot your home or office Wi-Fi password, but your computer is connected to the network? Windows 10 There are several ways to retrieve saved security keys, both through standard system tools and third-party utilities. This guide will help you restore network access without resetting your router or contacting your ISP.

It is important to understand that passwords are stored in encrypted form in the system registry, but they can be read if you have permission. administratorThe methods vary in complexity, from simple viewing in a graphical interface to using PowerShell or specialized programs like WirelessKeyView.

If you're connecting to a network for the first time or after a factory reset, these methods won't help—they only work for networks the computer has previously connected to. Also, keep in mind that some methods may not work on corporate networks with security certificates (e.g., WPA2-Enterprise).

1. View your password through Windows Settings (the easiest way)

This method doesn't require any commands or additional software. It's suitable for most home networks with the following security type: WPA2-Personal.

  • 🖥️ Open the menu Start and select Parameters (gear icon).
  • 🌐 Go to the section Network and Internet → Wi-Fi.
  • 🔗 In the block Related parameters click Additional network settings.
  • 📋 In the window that opens, select Managing known networks.

Next, click on the name of the desired network and press PropertiesIn the new window, scroll down to the field Network security key — the password will be hidden by dots. To see it, check the box next to Show entered characters.

Windows settings are open | The "Network and Internet" section is selected | The desired network is found in the list of known networks | The "Show entered characters" box is checked -->

⚠️ Attention: If the button Show entered characters If the icon is inactive or missing, your account doesn't have administrator rights. Try logging in with a different account or using the alternative methods in this article.

This method only works for networks to which the computer was connected manually (i.e. the password was entered by the user). If the network was added via WPS or automatically (for example, in public places), the password may not be present in the properties.

2. Using the Command Prompt (CMD)

The command line allows you to extract the password without a graphical interface. This method is useful if Windows is running in safe mode or you have limited access to settings.

Open CMD as administrator (click Win + X and select Command Prompt (Administrator)) and perform in order:

netsh wlan show profiles

This command will list all saved networks. Remember the exact name of the one you want (case is important!).

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

Replace NAZVANIE_SETI with the name of your network (in quotation marks!). In the execution results, find the line Key content - this is the password.

Example of command output

Profile name: MyWiFi

...

Security settings:

Authentication type: WPA2-Personal

Encryption type: AES

Key content: 12345678

...

⚠️ Attention: If a blank line or message is displayed instead of a password The key is missing, this means the network uses a different authentication method (for example, certificates) or the password was not saved.

This method is universal and works even on older versions. Windows, but requires precise command entry. An error in the network name will result in a message Profile "NAZVANIE_SETI" not found.

3. Extracting the password via PowerShell

PowerShell — a more powerful tool than CMD, and also allows you to retrieve saved passwords. This method is useful for system administrators or those who prefer scripts.

Launch PowerShell as administrator and run:

(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key contents\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); [PSCustomObject]@{PROFILE_NAME=$name;PASSWORD=$pass}} | Format-Table -AutoSize

This command will automatically output a table with all saved networks and their passwords. If you only need information about one network, simplify the command:

(netsh wlan show profile name="NAZVANIE_SETI" key=clear) | Select-String "Key Contents"

Advantage PowerShell — the ability to export results to a file. Add to the end of the first command | Out-File -FilePath "C:\wifi_passwords.txt"to save the password list to disk C:.

Via Windows Settings|Via Command Prompt (CMD)|Via PowerShell|Using third-party programs-->

4. View passwords in the Windows registry

All Wi-Fi passwords are stored encrypted in the system registry. They can be extracted manually, but this process requires caution—incorrect registry changes can disrupt the system.

Follow the instructions:

  1. Click Win + R, enter regedit and confirm the launch.
  2. Follow the path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wlansvc\Interfaces\{GUID}\

    (Where {GUID} — unique interface identifier).

  3. In the interface folder, find the parameter Profile - it contains encrypted network data.

To decrypt the password, you will need additional software like WirelessKeyView (described in the next section) or manual conversion via Windows APISelf-decryption without tools takes a lot of time and requires programming knowledge.

⚠️ Attention: Editing the registry may cause network or system failures. It is recommended to create a restore point before making changes (Start → Control Panel → Recovery → Configure System Restore).

This method is suitable for experienced users who understand the registry structure. For most tasks, specialized utilities are easier to use.

5. Third-party programs for viewing passwords

If standard methods don't work or you need to quickly retrieve passwords from all networks, use free utilities. They automatically read data from the system and display it in a convenient format.

Program Peculiarities Download link Do you need admin rights?
WirelessKeyView (NirSoft) Shows all saved passwords, export to .txt/.html, portable version NirSoft official website Yes
WiFi Password Revealer Simple interface, copying password to clipboard, support Windows 7-11 Magical Jelly Bean Yes
PassFab WiFi Key Recover passwords even after reinstallation Windows (if the disk was not formatted) PassFab Official Website Yes

Example of working with WirelessKeyView:

  1. Download the program from the official website (avoid third-party sources!).
  2. Unzip the archive and run WirelessKeyView.exe (admin rights are required).
  3. All networks with speakers will be displayed in the main window: Network Name, Key (Ascii), Type.
  4. To copy the password, right-click on the line and select Copy Key.

Advantages of third-party utilities:

  • 🔍 Show passwords for everyone saved networks at once.
  • 📄 Possibility to export the list to a file.
  • 🔄 Work even if standard methods Windows blocked (for example, in corporate networks).
⚠️ Attention: Download programs only from the developers' official websites. Many "cracked" versions of password viewing utilities contain malware.

6. Features for corporate and public networks

Home networks typically use a simple password (WPA2-Personal), but in offices, universities or hotels, more complex authentication methods are often used:

  • 🏢 WPA2-Enterprise with certificates or login/password.
  • 🔑 802.1X (authentication via RADIUS-server).
  • 📶 Open networks with web authorization (port redirects).

In such cases, standard password extraction methods won't work. Here's what you can do:

  • 📋 For WPA2-Enterprise: the password can be stored in Windows Credential Manager (Control Panel → Credentials). Look for the entry with the network name.
  • 🖥️ For networks with web authentication: the password is not saved in the system; you must request it from the administrator or provider.
  • 🔄 If the network uses certificates, they can be exported via certmgr.msc (run through Win + R).

In corporate networks, access to passwords is often restricted by security policies. Attempting to extract them could violate internal company policies and even lead to the device being locked out of the domain.

7. What to do if none of the methods worked?

If you've tried all the methods and still can't extract the password, here are some alternative solutions:

  • 🔄 Resetting the router: Click the button Reset on the back of the router (hold for 10-15 seconds). After resetting, use the default password (indicated on the device sticker).
  • 📞 Contacting your provider: If the router was issued by the provider, the password may be specified in the contract or personal account.
  • 📱 View on another device: If connected to the network Android- smartphone with rights root, the password can be extracted through ES File Explorer (path: /data/misc/wifi/WifiConfigStore.xml).
  • 🔧 Connection via cable: If Wi-Fi is not working but there is internet, connect to the router via Ethernet and log in to the web interface (usually 192.168.1.1 or 192.168.0.1).

If the router belongs to an Internet service provider (for example, Rostelecom, Beeline, MTS), the default password may be indicated on the device body or in the accompanying documentation. It typically has the following format:

  • admin/1234 (for older models).
  • Last 8 characters MAC addresses (For example, A1B2C3D4).
  • Random combination of 8-12 characters (indicated on the sticker).
⚠️ Attention: Resetting the router will return all settings to factory defaults, including the network name (SSID), password, provider binding and parameters IPTVAfter the reset, you may need to reconfigure your internet connection.

FAQ: Frequently asked questions about viewing Wi-Fi passwords

Is it possible to find out the password for a Wi-Fi network that the computer has never connected to?

No. Windows Stores passwords only for networks it has successfully connected to before. If the computer has never connected to the network, it's impossible to extract its password using standard methods. In this case, the following remains:

  • Reset the router to factory settings.
  • Find out the password from the network administrator.
  • Use password guessing programs (illegal and unethical!).
Why is there an empty line instead of a password in the command line?

This happens in three cases:

  1. The network uses authentication via certificates (WPA2-Enterprise).
  2. The password was not saved when connecting (for example, via WPS).
  3. Your account does not have administrator rights.

Try running CMD as administrator or use third-party utilities.

Is it possible to extract Wi-Fi passwords from someone else's computer without their knowledge?

Technically yes, but that's breaks the law (Article 272 of the Criminal Code of the Russian Federation - unauthorized access to computer information). In addition:

  • Most antivirus programs block programs like WirelessKeyView during hidden launch.
  • In corporate networks, such actions are monitored by security systems.
  • It is ethical to ask the network owner or administrator for the password.
How to protect your Wi-Fi passwords from being extracted?

If you are concerned that someone might extract passwords from your computer:

  • 🔐 Use BitLocker to encrypt the system disk.
  • 👤 Create a separate account without admin rights for everyday work.
  • 🚫 Disable saving passwords in Settings → Network & Internet → Wi-Fi → Manage known networks (delete unnecessary networks).
  • 🛡️ Set a password to log in BIOS/UEFIto disable booting from a flash drive.

Enable filtering on your router MAC addresses and turn it off WPS.

Do these methods work on Windows 11?

Yes, all the methods described (via parameters, CMD, PowerShell, registry and third-party programs) work in Windows 11The network settings interface has changed slightly, but the functionality remains the same. For example, the path to passwords is now:

Settings → Network & Internet → Wi-Fi → Manage known networks → [Network name] → View network properties

Teams netsh and scripts PowerShell work without changes.