How to view your Wi-Fi password in Windows 10: all the methods, from simple to complex

Forgot your home or office Wi-Fi password, but your laptop or PC is connected to the network? Windows 10 offers several ways to retrieve saved passwords, from standard system tools to specialized programs. These instructions will help you regain access to the network without resetting the router, even if you don't have administrator rights (in some cases).

It's important to understand: the password is stored in the system in encrypted form, but it can be read if you have access to a computer with a saved connection. Methods vary in complexity: from two clicks in a graphical interface to a command line for advanced users. We'll cover all the current methods, including peeping through "Settings", using PowerShell And Exporting passwords using third-party utilities.

If you are looking for a way to hack someone else's network, we warn you right away: it is illegal and technically difficult (modern routers use WPA3 and protected from brute force). Our article is intended only for restoring access to his own network, the password for which was previously saved on the device.

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

This is a basic method that works on all versions of Windows 10 without any additional software. It's suitable as long as you have administrator rights on your computer.

  1. Open Settings: click Win + I or click on the gear icon in the Start menu.
  2. Go to the section Network and Internet → Status → Network and Sharing Center.
  3. In the window that opens, click on the name of your Wi-Fi network (next to "Connections").
  4. Click the button Wireless network properties, then go to the tab Security.
  5. Check the box Show entered characters — the password will be displayed in the field Network security key.

⚠️ AttentionIf the "Wireless Network Properties" button is grayed out, your account doesn't have administrator rights. Try the command prompt method (method 3) or log in with an administrator account.

Make sure your computer is connected to the correct Wi-Fi network|Check your administrator rights|Close your VPN (it may be blocking access to network settings)|Disable Windows Guest Mode if it is active-->

This method works for 90% of users, but if you have Windows 10 LTSC or an enterprise version with limited settings, you may need an alternative method. Also note that in some Windows builds (for example, from laptop manufacturers), the path to the settings may differ slightly—look for the "Security" tab in the connection properties.

Method 2: Using Network Connections (Alternative Graphical Method)

If the first method doesn't work, try accessing your password through the classic Control Panel. This method is universal and works even on older versions of Windows.

Instructions:

  • 🖱️ Click Win + R, enter ncpa.cpl and press Enter — the "Network Connections" window will open.
  • 📡 Find your Wi-Fi connection (usually labeled as "Wireless Network"), right-click on it and select State.
  • 🔍 In the new window, click Wireless network properties, then go to the tab Security.
  • 👁️ Check the box Show entered characters — the password will become visible.

If you see dots or asterisks instead of a password, but the "Show entered characters" checkbox is disabled, this means:

  • 🔒 Your account does not have administrative rights.
  • 🛡️ The password is stored in a secure Windows vault (for example, via Credential Manager).
  • 🖥️ The connection is configured via third-party software (for example, Intel PROSet/Wireless).

Method 3: Command Line (for advanced users)

If the GUI is not available or does not show the password, you can extract it via CMDThis method works without administrator rights, as long as you have access to the command prompt as the current user.

Step-by-step instructions:

  1. Open Command Prompt as Administrator (Win + X → Command Prompt (Administrator)).
  2. Enter the command to view all saved networks:
    netsh wlan show profiles

    Remember the name of the network you need (for example, MyWiFi_5G).

  3. Display information about a specific network by replacing NETWORK_NAME to its real name:
    netsh wlan show profile name="NETWORK_NAME" key=clear
  4. Find the line Key content - this is your password.

⚠️ Attention: If you see a blank line or the message "Missing" instead of a password, this means:

  • 🔐 The password is not saved in the system (for example, the connection was configured via WPS).
  • 🛑 You don't have permission to view this (try running CMD as administrator).
  • 🔄 The network uses a dynamic key (for example, in corporate networks with 802.1X).

Critical detail: in Windows 10 version 2004 and later, the `netsh` command may not display the password for networks with WPA3 security type. In this case, use PowerShell (method 4).

Via Windows Settings|Via Command Prompt|Via PowerShell|Third-party programs-->

Method 4: PowerShell - Advanced Method for All Windows 10 Versions

PowerShell — a more powerful tool than the classic command line. It allows you to export all saved Wi-Fi passwords in a convenient format, including networks with WPA3.

Instructions:

  1. Open PowerShell as administrator (Win + X → Windows PowerShell (Administrator)).
  2. Enter the command to view all saved networks:
    (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

The result of execution is a table with all network names (PROFILE_NAME) and their passwords (PASSWORD). If the password is not displayed, check:

  • 🔹 Correctness of the network name (case is important!).
  • 🔹 Is PowerShell running with administrator privileges?
  • 🔹 Does the antivirus block the execution of commands (for example, Kaspersky or ESET may prevent password extraction).

For convenience, you can save the result to a file:

(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}} | Export-Csv -Path "C:\WiFi_Passwords.csv" -NoTypeInformation -Encoding UTF8

File WiFi_Passwords.csv will appear on the disk C: - it can be opened in Excel or Notepad.

Method 5: Third-party password extraction programs

If standard methods don't work, you can use specialized utilities. They are convenient for viewing all saved passwords in one window and often offer additional features (for example, exporting to .txt or .csv).

Popular programs:

Program Peculiarities Link (official) Paid/Free
WirelessKeyView Shows all saved Wi-Fi passwords, supports HTML/CSV export nirsoft.net Free
WiFi Password Revealer Simple interface, copying password to clipboard magicaljellybean.com Free
PassFab WiFi Key Recovering passwords even after reinstalling Windows (if the configuration file is not deleted) passfab.com Paid (there is a trial version)
NetSpot In addition to passwords, it analyzes signal strength and Wi-Fi channels netspotapp.com Shareware

⚠️ Attention: Download programs only from official websites! Many "Wi-Fi hackers" on the internet contain viruses or spyware. Before installing, check the file using VirusTotal.

Example of working with WirelessKeyView:

  1. Download and unzip the archive with the program (no installation required).
  2. Launch WirelessKeyView.exe on behalf of the administrator.
  3. Find the required network in the table - the password will be in the column Key (Ascii).
  4. Export data via if necessary File → Save All Items.
What should I do if the program doesn't show the password?

If the utility displays empty fields or errors, the reasons may be as follows:

1. The password is stored in a secure Windows vault (for example, through Windows Hello or BitLocker).

2. The connection is configured via a proprietary driver (for example, utilities from Broadcom or Qualcomm Atheros).

3. Antivirus software is blocking access to network settings (disable it temporarily).

4. You are using a corporate network with dynamic keys (for example, EAP-SIM or PEAP).

Method 6: Recovering your password via your router (if other methods don't work)

If none of the above methods work, the last option is to obtain the password directly from the router. This is relevant if:

  • 🔌 You have physical access to the router.
  • 🔑 You know the login/password to enter the web interface (usually this is admin/admin or indicated on the device sticker).
  • 📡 The network does not use complex authentication protocols (e.g. Radius).

Instructions:

  1. Connect to the router via cable or Wi-Fi (if the connection is saved).
  2. Open your browser and enter your router's IP address in the address bar. Standard addresses:
    • 192.168.0.1 (TP-Link, D-Link, Netis)
    • 192.168.1.1 (ASUS, Zyxel, Keenetic)
    • 192.168.8.1 (some Huawei models)
  • Enter your login and password (by default it is often admin/admin or admin/password).
  • Go to the section Wireless (or "Wireless Network", "Wi-Fi") → Wireless Security (or "Protection", "Security").
  • Find the field Password, Key or PSK password - this is the Wi-Fi key.
  • ⚠️ Attention: If you have not changed the default settings of the router, the password may be indicated on the device sticker (field Wi-Fi Key or Password). However, this only works for new routers—after changing the password, the information on the sticker becomes invalid.

    If you can't log into your router:

    • 🔄 Try resetting it to factory settings (button Reset on the back panel, hold for 10-15 seconds).
    • 📞 Contact your provider - some operators (eg. Rostelecom or Beeline) block access to router settings.

    Bonus: How to Protect Your Wi-Fi from Hacking

    Now that you've regained access to the network, it's time to take care of its security. Even if your password is strong, attackers can exploit protocol vulnerabilities or social engineering.

    Recommendations for protection:

    • 🔐 Use WPA3 instead of the outdated one WPA2 (if the router supports it).
    • 🔑 Set a password length at least 12 characters with mixed case, numbers and special characters (for example, kL9#pQ2!xY7$mN1).
    • 📛 Hide SSID (network name) in the router settings so that it does not appear in the public list.
    • 🛡️ Turn on MAC address filtering (allow connection only to your devices).
    • 🔄 Update your router firmware regularly (every 3-6 months).
    • 🚫 Turn it off WPS - This protocol is vulnerable to brute force attacks.
    • 🌐 Set up guest network for friends, so as not to reveal the main password.

    To check the strength of your password, you can use online services like How Secure Is My Password (Don't enter the actual password, just its structure!) It's also helpful to periodically scan the network for connected devices—unknown devices may indicate a hack.

    Frequently Asked Questions (FAQ)

    Is it possible to find out the Wi-Fi password without administrator rights?

    Partially. Via the command line (netsh wlan show profile) you can try to extract the password, but if the account is heavily restricted, the system may block access. Third-party programs (for example, WirelessKeyView) also require administrator rights to work.

    If you don't have admin rights but have physical access to the computer, you can try booting from a LiveCD (for example, Hiren’s BootCD) and extract passwords from there - but this is a complex method that requires technical skills.

    Why doesn't the netsh command show the password for my network?

    Possible reasons:

    • The network uses WPA3 (try PowerShell).
    • The password is not saved in the system (for example, connecting via WPS or Windows Hello).
    • You have a corporate network with dynamic keys (802.1X).
    • Antivirus is blocking access to network settings.

    Solution: Use WirelessKeyView or check your router settings.

    How can I find out the Wi-Fi password on someone else's computer (for example, when visiting someone else)?

    This is illegal. and is considered hacking (Article 272 of the Russian Criminal Code). Even if you "just look," without the owner's consent, this qualifies as unauthorized access to computer information.

    If you really need Wi-Fi access, ask the network owner for the password. Most modern routers allow temporary access via guest network or WPS.

    Is it possible to recover a Wi-Fi password after reinstalling Windows?

    No, not if you performed a clean installation of the system. Wi-Fi passwords are stored in the Windows registry and are deleted along with it. However, if you:

    • Made a backup copy of the registry (HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wlansvc\).
    • Used programs like PassFab WiFi Key, which scan residual files.
    • The disk was not formatted completely (data may remain in unused sectors).

    Then there's a chance to recover the password. In other cases, the only option is to reset the router or contact your ISP.

    How to protect your Wi-Fi password from being seen using these methods?

    If you administer a network and want to protect yourself from password extraction using the methods described:

    • Use corporate authentication (802.1X with Radius server) instead of PSK.
    • Set up VPN for local network access — then the Wi-Fi password will be useless without the VPN key.
    • Change your password regularly (every 1-2 months).
    • Disable saving passwords in Windows via Group Policy (gpedit.msc).

    However, these measures are only relevant for corporate networks. For home Wi-Fi, a complex password and disabling WPS are sufficient.