How to quickly find out the Wi-Fi password on a Windows laptop: all the methods

Forgot your home Wi-Fi password and there's no sticker with the password on your router? Or need to connect a new gadget but can't be bothered to find the piece of paper with the code? On a Windows laptop, the password for the current network is stored in the system — it can be easily removed without resetting the router or calling the provider. In this article, we'll look at 5 proven methods, including methods for non-administrator users.

Many people mistakenly believe that access to the router settings or admin rights are required to view the password. In fact, Windows keeps all connected networks encrypted., and they can be decrypted using standard tools. The main thing is that the laptop must be already connected to the target network (or connected previously). If the network isn't in the list of saved networks, you'll have to use alternative methods.

The methods in the article work on Windows 10 And Windows 11 (including the latest builds of 2026). For Windows 7/8 Some instructions may differ - we will warn you about this separately. Also note: if the network is corporate (with authentication via 802.1X), standard methods will not work - access to the authentication server will be required.

📊 How often do you forget your Wi-Fi password?
Often, once a month
Sometimes, once every six months
There is always a piece of paper nearby
I never forget

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

This official method from Microsoft, which does not require the command line or third-party programs. Suitable for most home networks (WPA2-Personal or WPA3-Personal).

Step-by-step instructions:

  1. Open the menu Start and select Parameters (gear icon).
  2. Go to the section Network and InternetWi-Fi.
  3. Click Managing known networks.
  4. Find the required network in the list and click on it.
  5. Select Properties, then scroll down to the block Security parameters.
  6. Check the box Show entered characters — the password will become visible.

⚠️ Attention: If the button Properties is inactive or missing, then your account does not have administrator rights. In this case, use command line method or browsing through the registry.

This method does not work for guest networks (for example, in cafes or airports), as they often use portal authentication without storing the password on the device.

Make sure your laptop is connected to the correct network|Check your administrator rights (if required)|Open network settings, not control panel|Use the latest version of Windows-->

2. How to find out the password via the command line (CMD)

If the GUI does not show the password (for example, due to security policy restrictions), The command line will help bypass this limitation.This method works even without administrator rights, if the network is already saved in the system.

Instructions:

  1. Launch Command line as administrator (click Win + XTerminal (administrator)).
  2. Enter the command to view all saved networks:
    netsh wlan show profiles

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

  3. Print the network data by replacing NETWORK_NAME to its real name:
    netsh wlan show profile name="NETWORK_NAME" key=clear
  4. Find the line Key content (Key Content) - this is the password.

🔹 Example of command output (password highlighted):


Profile name: MyWiFi_5G

...

Security parameters

Authentication type: WPA2-Personal

Encryption type: AES

Key content: qwerty12345

⚠️ Attention: On some corporate laptops, the command may return an error Access deniedThis means that the network is controlled through Group Policy — in this case, the password can only be obtained from the IT department administrator.

What to do if the command doesn't work?

If after entering netsh wlan show profiles You see an empty list, which means:

1. The laptop has never connected to this network (check the name!).

2. The network profile was deleted manually via Forget the network.

3. Used Windows 7 - try the command netsh wlan show hostednetwork setting=security (for Wi-Fi distribution only).

3. View the password in the Network and Sharing Center (for Windows 7/8/10)

An old but reliable method through control PanelSuitable if the new "Settings" do not display the information you need.

How to open:

  1. Click Win + R, enter ncpa.cpl and press Enter.
  2. Find the adapter Wireless network, right-click on it → State.
  3. Click Wireless network properties → tab Security.
  4. Check the box Show entered characters.

🔹 Differences for Windows 11:

In the new version the path has changed a little - instead of ncpa.cpl you can use:

Start → Settings → Network & Internet → Advanced network settings → Advanced network properties.

⚠️ Attention: If asterisks (••••••••) and a check mark Display characters inactive, means:

- You do not have administrator rights.

- The network uses WPA3-Enterprise or other corporate protocol.

4. Extracting a password from the Windows registry (for advanced users)

All Wi-Fi passwords are stored in encrypted in the registryThey can be extracted manually or using a script. This method requires administrator rights and caution - incorrectly editing the registry may disrupt the operation of the system.

Step-by-step instructions:

  1. Launch Registry Editor (Win + Rregedit).
  2. Follow the path:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wlansvc\Interfaces\

    There will be folders inside with GUID- identifiers - open them one by one.

  3. In each folder, find the parameter Profile → open it and look at the value ssidname (network name).
  4. Once you find the desired network, pay attention to the parameter Profile in binary format. It needs to be decrypt using PowerShell or third-party utilities (for example, WirelessKeyView).

🔹 Automation via PowerShell:

If you don't want to dig into the registry manually, run this script (requires PowerShell 5.1+):

(Get-NetAdapter -IncludeHidden | Where-Object {$_.MediaType -eq "Native 802.11"}).InterfaceGuid | ForEach-Object {

$profilePath = "HKLM:\SOFTWARE\Microsoft\Wlansvc\Interfaces\$_\Profiles"

Get-ChildItem $profilePath | ForEach-Object {

$profile = Get-ItemProperty $_.PSPath

$ssid = [System.Text.Encoding]::Unicode.GetString($profile.ssid)

$key = [System.Text.Encoding]::Unicode.GetString($profile.MSM.Security.KeyMaterial)

Write-Host "SSID: $ssid`nPassword: $key`n"

}

}

⚠️ Attention: Decrypting passwords from the registry may not work on all versions of Windows — starting from Windows 10 20H2Microsoft has tightened password storage security. If the script returns empty, use specialized utilities.

5. Using third-party programs (without the command line)

If standard methods don't work, utilities from third-party developers will help you extract your password in just a few clicks. We tested the programs for viruses and compatibility with Windows 11 23H2 — all of them are safe when downloaded from official websites.

🔹 Top 3 Wi-Fi Password Viewers:

  • 🛠️ WirelessKeyView (from NirSoft) - shows all saved passwords in one window, works without installation. Download.
  • 🔑 WiFi Password Revealer — simple interface, export passwords to a file. Supports WPA3.
  • 🖥️ Magical Jelly Bean WiFi Password Revealer — displays passwords in a table with additional information (encryption type, router MAC address).

How to use (using WirelessKeyView as an example):

  1. Download the archive with the program and unzip it.
  2. Launch WirelessKeyView.exe (admin rights are not required).
  3. Find the required network in the table - the password will be in the column Key (Ascii).
  4. Export data to if necessary. HTML or TXT through the menu File.

⚠️ Attention: Some antiviruses (for example, Avast or Kaspersky) can block WirelessKeyView as "potentially unsafe software." This false positive — the program does not contain viruses, but it works with protected system data. If in doubt, check the file for VirusTotal.

6. Alternative methods (if nothing helps)

If none of the methods worked, The problem may be in the system or router settings.Here's what to do next:

🔹 What to check first:

  • 🔄 Reconnect to the networkSometimes Windows "forgets" the password after updates. Disconnect from Wi-Fi and reconnect.
  • 🖼️ Look at the sticker on the router: On most models (TP-Link, ASUS, Keenetic) the password is indicated on the bottom panel.
  • 📡 Log in to the router's web interface: Open in browser 192.168.1.1 or 192.168.0.1, enter login/password (usually admin/admin) and find the section Wireless → Security.
  • 📱 Look at the password on your phone: On Android (with root rights) or iPhone (via iCloud Keychain) you can also retrieve saved passwords.

🔹 If the network is corporate (WPA2-Enterprise):

In this case, the password is stored on the authentication server (for example, Radius or Active Directory). It cannot be extracted by standard methods. — Contact your company’s IT department.

🔹 If the router is rented from a provider:

Some operators (for example, Rostelecom, Beeline, MTS) The Wi-Fi password is specified in your personal account or contract. You can also find it by calling support (you will need to provide your subscriber information).

Comparison of methods: which one to choose?

To make your decision easier, we've compiled a table with the pros and cons of each method:

Method Do you need admin rights? Does it work on Windows 11? Complexity When to use
Windows Settings ❌ No ✅ Yes ⭐⭐ (simple) For home networks with WPA2-Personal
Command line (netsh) ❌ No ✅ Yes ⭐⭐⭐ (average) If the GUI does not show the password
Network and Sharing Center ❌ No ⚠️ Partial (obsolete) ⭐⭐ (simple) For Windows 7/8/10
Windows Registry ✅ Yes ✅ Yes ⭐⭐⭐⭐ (difficult) If other methods don't work
Third-party programs ❌ No ✅ Yes ⭐ (very simple) For bulk export of passwords

🔹 Recommendation:

Start with first method (Windows Settings). If that doesn't work, try command lineSuitable for experienced users. registry or PowerShellLeave third-party programs for emergencies (for example, if you need to save passwords before reinstalling Windows).

FAQ: Frequently asked questions about viewing Wi-Fi passwords

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

No. Windows only stores passwords for networks that you've connected to at least once.. If the network is not in the list of saved ones (netsh wlan show profiles), it is impossible to extract the password using standard methods. Alternatives:

  • Look at the sticker on the router.
  • Login to the router's web interface (192.168.1.1).
  • Reset the router to factory settings (the password will become default, for example, admin).

Why does the command prompt show an empty list of networks?

This happens for three reasons:

  1. Laptop never connected to Wi-Fi (via Ethernet only).
  2. Network profiles were removed through Forget the network.
  3. Company security policy blocks saving of passwords (relevant for work laptops).

Solution: Reconnect to the network or check your router settings.

Is it possible to find out the password from an Android phone?

Yes, but only with root rights or on some firmware (for example, MIUI from Xiaomi). Methods:

  • Use the app WiFi Password Viewer (requires root).
  • On Samsung With One UI: open Settings → Connections → Wi-Fi → ⚙️ → Share (will show a QR code with a password).
  • On iPhone: passwords are stored in iCloud Keychain (available on devices with the same Apple account).

Is it safe to use programs like WirelessKeyView?

Yes, if you download them from the developer's official website (For example, nirsoft.net). Risks:

  • 🛡️ False antivirus alarms: Many password utilities are marked as "potentially dangerous," but this does not mean they are infected.
  • 🔓 Data leak: If you download a program from a dubious source, it may contain keyloggers. Always check the files for VirusTotal.

Alternative: Use built-in Windows tools (netsh or registry) if you are not sure about the security of third-party software.

How to protect your Wi-Fi from hacking after viewing your password?

If you've shared your password with someone and are concerned about security, follow these steps:

  1. Change your password in the router settings (section Wireless → Security).
  2. Turn on WPA3 instead of WPA2 (if the router supports it).
  3. Disable WPS - This protocol is vulnerable to brute force attacks.
  4. Create a guest network for friends (limited access to local devices).
  5. Enable MAC filtering (but this is not a panacea - MAC addresses are easy to fake).

⚠️ AttentionEven a complex password won't protect you from a leak if someone has already connected to your network. Regularly check the list of devices in your router's web interface!