How to view your Wi-Fi password on Windows 10: all methods with pictures

Forgot your home Wi-Fi password, or is the sticker on your router worn off or never there? Don't rush to reset your router or call your ISP. Windows 10 There are several built-in ways to retrieve the saved password for any wireless network your computer or laptop has ever connected to, even if you're currently using a different Wi-Fi network or even a cable connection.

In this article - 5 working methods, including hidden system functions, the command line, and third-party utilities. We'll look at how to find a password using Windows Settings, Network and Sharing Center, PowerShell and specialized programs like WirelessKeyViewWe'll also explain why the system sometimes doesn't display your password and how to fix it.

All instructions are valid for Windows 10 (including the latest builds 22H2), but most methods work on Windows 11, 8.1, and also Windows 7 with minor changes to the interface. If you have account without administrator rightsSome methods will be unavailable - we will warn you about this in advance.

📊 How often do you forget your Wi-Fi password?
Often, once a month
Sometimes, a couple of times a year
Only after reinstalling Windows
I never forget
I keep passwords in a notepad

1. How to find your Wi-Fi password using Windows Settings (the easiest way)

This is a basic method that works without any additional programs or commands. It's suitable if your computer currently connected to the network whose password you forgot, or connected to previously (the system saves the passwords of all networks to which it has ever connected).

Instructions:

  1. Open the menu Start and select Parameters (gear icon) or click Win + I.
  2. Go to the section Network and Internet.
  3. In the left menu, select Wi-Fi, then click on the right Managing known networks.
  4. Find the required network in the list and click on it.
  5. Click Properties (or Additional options in older versions of Windows 10).
  6. Scroll down to the block Network properties and press Show symbols next to the field Network security key.

Done! Now you can see your Wi-Fi password in plain text. You can copy it (Ctrl + C) or rewrite.

Make sure you have administrator rights

Check that the computer has connected to this network before.

Update your Wi-Fi adapter drivers

Please restart your computer and try again-->

⚠️ Attention: If the button Show symbols If the password field is inactive or empty, Windows hasn't saved the network information. Try other methods in this article or check your router settings.

2. View the password through the Network and Sharing Center (alternative method)

This method works on the same principle as the previous one, but uses the classic control panel. It is useful if you have Windows 10 LTSC or a modified build without the modern "Settings" interface, or if the first method didn't work.

How to open:

  • 🖱️ Right-click on the Wi-Fi icon in the tray (bottom right of the taskbar) and select Open Network and Internet settings.
  • 🔗 In the window that opens, scroll down and click Network and Sharing Center.
  • 📡 Select on the left Managing wireless networks (if this item is not there, go to Changing adapter settings → right click on Wireless networkStateWireless network properties).

Next:

  1. Find the required network in the list and double-click on it.
  2. Go to the tab Security.
  3. Check the box Show entered characters — the password will appear in the field Network security key.

If the network you need isn't in the list, it means Windows hasn't remembered it. In this case, command line method or special utilities.

Why isn't my network listed?

If the network is missing from the Control Center, it means:

1. You have never connected to it from this computer.

2. Network data has been deleted (for example, after resetting Windows or clearing the network cache).

3. The network is hidden (SSID is not broadcast), and Windows does not save it in the standard way.

In such cases, try connecting to the network again or use methods 3-5 from this article.

3. How to extract a password via the command line (CMD)

The command line is a versatile tool that works even if the Windows graphical interface is damaged. This method is suitable for all versions of Windows, including server editions, and does not require installation of additional software.

Instructions:

  1. Open Command line as administrator:
    • Click Win + X and select Command Prompt (Administrator) or Windows PowerShell (Administrator).
    • Or enter cmd in the search, then right click → Run as administrator.
  • Enter the command to view all saved networks:
    netsh wlan show profiles

    Remember the exact name of the network you need (case is important!).

  • Enter the command to extract the password (replace NETWORK_NAME to the real name):
    netsh wlan show profile name="NETWORK_NAME" key=clear
  • Find the line Key content (Key Content) - this is your password.
  • Example of command output:

    Security parameters
    

    Authentication type: WPA2-Personal

    Encryption type: AES

    Key contents: 12345678

    ⚠️ Attention: If you see a message instead of a password Key content is missing, Means:
    • You entered the network name with an error (check your capitalization!).
    • The network uses Enterprise authentication (for example, in offices or universities) - its password cannot be found out this way.
    • The network data is corrupted (try PowerShell).

    4. Extracting Password Using PowerShell (For Advanced Users)

    PowerShell — a more powerful tool than CMD, and sometimes it works where the command line gives errors. This method is useful if you need save passwords of all networks to a file or automate the process.

    Steps:

    1. Launch PowerShell as administrator (similar to CMD).
    2. Enter the command to view all saved Wi-Fi profiles:
      (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
    3. If you need information about a specific network, use a simplified command:
      (netsh wlan show profile name="NETWORK_NAME" key=clear) | Select-String "Key Contents"

    The result will be displayed in a table:

    Network name (PROFILE_NAME)Password
    my_wifi_2.4Gqwerty123
    Office_NetPa$$w0rd!
    Guest_House12345678

    To save all passwords to a text file, add the following to the end of the first command:

    | Out-File -FilePath "C:\wifi_passwords.txt"

    5. Programs for viewing Wi-Fi passwords (if system methods don’t work)

    If Windows' built-in tools aren't helpful (for example, due to corrupted system files or lack of administrator rights), third-party utilities can help. They can extract passwords even from hidden networks and often reveal additional information, such as MAC address of the router or encryption type.

    Top 3 proven programs:

    • 🔍 WirelessKeyView (from NirSoft) is a portable utility that doesn't require installation. It displays passwords for all saved networks, including those not displayed in Windows Settings. Download from the official website.
    • 🛡️ WiFi Password Revealer — a simple program with the ability to copy passwords to the clipboard. Supports export to .txt And .csv.
    • 📊 Magical Jelly Bean WiFi Password Revealer — in addition to passwords, it shows the signal strength and network channel. There is a version for macOS.

    How to use (using example) WirelessKeyView):

    1. Download the archive with the program and unzip it.
    2. Run the file WirelessKeyView.exe (administrator rights are not required, but desirable).
    3. In the main window, you will see a list of all networks with speakers:
      • Network Name (SSID) — network name;
      • Key (Ascii) — password in readable form;
      • Key Type — encryption type (WPA2-PSK, WEP etc.).
  • To copy the password, right-click on the line and select Copy Key.
  • ⚠️ Attention: Download programs only from official websites! Many "cracked" versions of password viewing utilities contain viruses or spyware. WirelessKeyView and similar tools are legal, but antivirus programs may complain about them because of their password extraction function—this is a false positive.

    6. What to do if none of the methods work?

    If you've tried all the methods and still can't find the password, the problem may be one of the following:

    ProblemSolution
    The computer has never connected to this network. Connect to the network at least once (enter a temporary password if the router supports guest access).
    Network with Enterprise authentication (corporate) The password is stored on the Radius server, not on the device. Please contact your network administrator.
    Corrupted system files Run a system file integrity check:
    sfc /scannow
    You do not have administrator rights Request temporary access to an account with administrator rights or use a LiveCD with Windows PE.
    The network is hidden (does not broadcast SSID) Connect to it manually via Settings → Wi-Fi → Hidden Network.

    If nothing helps, there are radical measures left:

    • 🔄 Resetting the router to factory settings (button Reset on the back panel). After that, the password will be the same as on the router sticker (usually it is a combination like admin/12345678).
    • 📞 Contacting your provider. Many operators (for example, Rostelecom, Beeline, MTS) store passwords for distributed routers in your personal account.
    • 🔧 Connection via cableIf you have access to the router through Ethernet, go to its web interface (usually at 192.168.0.1 or 192.168.1.1) and look at the password in the settings Wi-Fi.

    Bonus: How to protect your Wi-Fi from hacking after recovering your password

    Now that you've regained access to the network, it's time to take care of its security. Even if your current password is secure, the following tips can help avoid future problems:

    • 🔐 Use a complex password. The optimal length is 12+ characters with a mixture of letters (uppercase and lowercase), numbers and special characters. Example: k0T@pCh!p2026!.
    • 📡 Disable WPSThis feature simplifies connecting devices, but makes the network vulnerable to brute-force attacks. In the router settings, find WPS and deactivate it.
    • 🔄 Update your router firmwareOutdated software versions often contain vulnerabilities. Check for updates in your router's web interface.
    • 👥 Set up a guest networkIf you frequently have guests, create a separate network with limited access to local resources.
    • 📵 Hiding the SSID It won't protect you from experienced hackers, but it will reduce the number of accidental connections. Disable network name broadcasting in your router settings.

    To check the strength of your password, use services like Kaspersky Password Checker or How Secure Is My PasswordThey estimate how long it will take to find a combination.

    FAQ: Frequently asked questions about viewing Wi-Fi passwords in Windows 10

    Is it possible to find out the password for a Wi-Fi network I've never connected to?

    No, Windows only saves passwords for networks your computer has connected to at least once. If the network isn't listed Managing known networks, it's impossible to extract its password using system tools. In this case, the following remains:

    • View the password on another device that has connected to this network.
    • Reset the router settings (button Reset).
    • Contact your ISP or network administrator.
    Why does the command line say "Key content is missing"?

    This means that:

    1. You have misspelled the network name (check your capitalization!).
    2. The network uses Enterprise authentication (e.g. in universities or offices).
    3. Network data is corrupted (try reconnecting).
    4. You do not have administrator rights (run CMD as administrator).

    If the network is home, but the password is not displayed, try the method with PowerShell or third-party utilities.

    How to view a Wi-Fi password on Windows 10 without administrator rights?

    Without administrator rights you can:

    • Use WirelessKeyView (sometimes works without admin rights).
    • View the password on another device (phone, tablet) where you have access to settings.
    • Recover your password through the router's web interface if you have cable access.

    System methods (CMD, PowerShell, Windows Settings) require administrator rights.

    Is it possible to find out the password from my neighbors if my computer has connected to theirs?

    Technically, yes, if your computer has ever connected to their network and saved the password. However:

    • ⚠️ This is against the law. (Article 272 of the Criminal Code of the Russian Federation - unauthorized access to computer information).
    • Neighbors can use encryption WPA3 or change your password regularly.
    • Many providers block suspicious activity on the network.

    It's better to ask for the password directly or agree to share the network.

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

    Wi-Fi network passwords are stored in the Windows registry at this location:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wlansvc\Interfaces\

    However, they are encrypted and cannot be extracted manually. System utilities (netsh, PowerShell) and programs like WirelessKeyView use Windows API for decryption.

    It is not recommended to edit the registry manually, as this may lead to network failures!