How to view the Wi-Fi password on a Windows 8 laptop: all the methods

Forgot your home or office Wi-Fi password, but your laptop is still working Windows 8 Already connected to the network? Don't rush to reset your router or call your ISP. The operating system stores all saved passwords in encrypted form, and they can be retrieved in several ways—even without administrator rights. In this article, we'll cover 5 working methods, including built-in system tools and third-party utilities.

It is important to understand: if the laptop never connected If you're connected to the network you're looking for, these methods won't work. Also, some methods may require administrator permissions, depending on your account settings. However, most of the instructions are also suitable for regular users.

Let's get to practice. We'll start with the simplest method—through the graphical interface. Windows 8, and then we'll move on to more advanced techniques.

📊 How often do you forget your Wi-Fi passwords?
Once a month
Several times a year
Only after reinstalling Windows
I never forget

1. View the password through the Network and Sharing Center

This is the most obvious and secure method, which doesn't require installing additional software or knowing any commands. It's compatible with all versions. Windows 8/8.1, including Pro And EnterpriseThe main condition is that the laptop must be currently connected to the network whose password you want to know.

Instructions:

  • 🖱️ Right-click on the icon Wi-Fi in the lower right corner of the taskbar (next to the clock).
  • 📋 Select an item Network and Sharing Center.
  • 🔗 In the window that opens, click on the name of your network (the link is next to the inscription Connections).
  • 🛠️ In the new window, select Wireless network properties → go to the tab Security.
  • 👁️ Check the box next to Show entered characters — the password will be displayed in the field Network security key.

If the button Show entered characters If it's inactive, your account doesn't have administrator rights. In this case, proceed to the next method.

⚠️ Attention: If you are connected to public network (for example, in a cafe or airport), this method will not work - the system does not save passwords for open access points.

Check your connection to the desired Wi-Fi network | Make sure you have administrator rights (if not, use the command line method) | Close any programs that may be blocking access to system settings -->

2. Using the Command Prompt (CMD)

Command line is a universal tool that allows you to extract the password from any saved network, even if the laptop isn't currently connected. This method works without administrator rights, but requires precise command entry.

Step-by-step instructions:

  1. Open command prompt:
    • 🔍 Click Win + R, enter cmd and press Enter.
    • 🖱️ Or right click on StartCommand Prompt (Administrator) (if admin rights are required).
  • Enter the command to display all saved networks:
    netsh wlan show profiles

    In the list, find the name of the desired network (for example, TP-Link_1234).

  • Extract the password for a specific network:
    netsh wlan show profile name="NETWORK_NAME" key=clear

    Replace NETWORK_NAME to the real name (in quotation marks!).

  • In the command results, find the line Key content - this is the password.
  • Example command output (password highlighted):

    
    

    Profile name: TP-Link_1234

    ...

    Security parameters

    Authentication type: WPA2-Personal

    Encryption type: CCMP

    Key content: 12345678Ab
    ⚠️ Warning: If the network name contains spaces or special characters (e.g. My Wi-Fi@Home), be sure to enclose it in quotation marks in the command. Otherwise, CMD will return an error.

    3. Viewing passwords via PowerShell

    PowerShell — a more powerful command line alternative that also allows you to extract saved Wi-Fi passwords. This method is useful if CMD doesn't work for some reason or you prefer scripts.

    Instructions:

    • 🔍 Open PowerShell:
      • Click Win + XWindows PowerShell.
      • Or enter in the search powershell and select the classic application.
    • Enter the command to display all 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;PASSWORD=$pass}} | Format-Table -AutoSize

    This command will automatically extract all saved networks and their passwords, displaying them in a table:

    Network profile Password
    TP-Link_1234 12345678Ab
    HomeNetwork qwerty123
    OfficeWiFi P@ssw0rd!

    The advantage of this method is one team You get passwords for every network you've ever connected to. The downside is that the command itself is complex and easy to mistype when entering manually. We recommend copying it directly from this article.

    4. Using third-party programs

    If built-in tools Windows 8 If passwords are not suitable (for example, due to restricted permissions or complex commands), specialized utilities can be used. These are convenient because they display passwords in a graphical interface and often offer additional features (list export, password strength check, etc.).

    Top 3 proven programs:

    • 🛡️ WirelessKeyView (from NirSoft) - free, portable (no installation required), shows all saved Wi-Fi passwords. Download from the official website.
    • 🔑 WiFi Password Revealer — a simple utility with the ability to copy passwords to the clipboard. Supports Windows 8/10/11.
    • 📡 Magical Jelly Bean WiFi Password Revealer — in addition to passwords, it shows additional information about networks (encryption type, router MAC address).

    How to use WirelessKeyView:

    1. Download the program from the official website (choose the 32-bit or 64-bit version depending on your system).
    2. Unzip the file and run it WirelessKeyView.exe (no installation required).
    3. The program will automatically display a list of all saved networks with speakers:
      • Network Name (SSID) — network name.
      • Key (Ascii) — password in readable form.
      • Key Type — encryption type (WPA, WEP, etc.).
  • To copy the password, right-click on the line and select Copy Key.
  • ⚠️ Attention: Some antivirus programs (for example, Avast or Kaspersky) can block utilities like WirelessKeyView, considering them potentially dangerous. This is a false positive—the program doesn't contain viruses, but it accesses system data. If necessary, add it to your antivirus exceptions.
    How to check if you have a 32-bit or 64-bit version of Windows 8?

    Open Control Panel → System and Security → System. In the section System type it will be indicated: 32-bit operating system or 64-bit operating system.

    5. Extracting passwords from the Windows registry

    This method is for advanced users. Wi-Fi passwords are stored in the registry. Windows They are encrypted, but they can be extracted using a script or manual decoding. This method works without third-party programs, but requires care—incorrect registry manipulation can disrupt the system.

    Instructions:

    1. Open Registry Editor:
      • Click Win + R, enter regedit and press Enter.
      • Confirm permission to make changes (if prompted by UAC).
  • Follow the path:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wlansvc\Interfaces\

    There will be folders with long names (GUIDs) here - each one corresponds to a network interface.

  • In each folder, find the section Profiles - it contains a list of saved networks.
  • Click on the network name → find the parameter in the right part of the window ProfileXML.
  • Double click on ProfileXML — a window with XML code will open. Find the line:
    <keyMaterial>ENCRYPTED_PASSWORD</keyMaterial>
  • Copy the value between the tags <keyMaterial> and paste it in online decoder or use the utility WirelessKeyView for decryption.
  • An example of an encrypted password in the registry:

    
    

    <keyMaterial>01000000D08C9DDF0115D1118C7A00C04FC297EB01000000A8F3E2C7485A4D42A71D5E6F3A2B1D000000000200000000000660000900000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000