Forgot your home Wi-Fi password and there's no sticker with the information on your router? Or do you need to connect a new device but are too lazy to look for the piece of paper with the code? Is your laptop under Windows 10 There are several ways to retrieve a saved network password—without resetting the router or installing questionable software. The main requirement is that the device must have already connected to this network at least once.
In this article we will analyze 5 proven methods — from standard system tools to advanced utilities. Some are suitable for beginners (just 2 clicks), while others require using the command line or registry editor. We'll also explain why some methods might not work and how to fix them. Important: All instructions are relevant for Windows 10 versions 1809–22H2, but most of them also work on Windows 11.
⚠️ Warning: Extracting passwords from other people's devices without the owner's permission may violate the law (Article 272 of the Russian Criminal Code on unauthorized access to computer information). This instruction is intended only for restoring access to his own networks.
1. The easiest way: via Windows Settings
If your laptop is currently connected to Wi-Fi, you can view the password in 30 seconds—no command line or third-party programs required. This method works on all versions. Windows 10 and does not require administrator rights.
Open the menu Start and go to Settings → Network & Internet → Status → Network and Sharing CenterIn the window that opens, click on the name of your wireless network (it's highlighted in blue). Next:
- In the new window, click the button Wireless Network Properties.
- Go to the tab "Safety".
- Check the box next to "Show input characters" — the password will be displayed in the field Network Security Key.
⚠️ Attention: If the "Wireless Network Properties" button is inactive or missing, then your connection is configured via WPS (button on the router) or Windows I didn't save my password. Try other methods from this article.
Make sure your laptop is connected to the correct Wi-Fi network|Check if you are using a WPS connection|Update your Wi-Fi adapter drivers in Device Manager|Restart your laptop and try again-->
2. How to find out the password via the command line (CMD)
This method is suitable if the first method did not work or you prefer to work with the console. The command line will show all saved passwords from Wi-Fi networks to which the laptop has ever connected - even if it is not currently in the coverage area of these networks.
Open CMD as administrator (click Win + X and select Command Prompt (Administrator)). Enter two commands in turn:
netsh wlan show profiles
netsh wlan show profile name="NETWORK_NAME" key=clear
Instead of NETWORK_NAME Enter your network name (without quotes). The password you're looking for will be in the line Key Contents (Key Content). If the command returned an error, check:
- 📌 The network name is correct (case is important!).
- 🔄 Administrator rights (run
CMDthroughWin + X). - 🖧 Service performance WLAN AutoConfig (check in
services.msc).
3. View passwords in Windows Credential Manager
Few people know, but Windows 10 stores Wi-Fi passwords in a special vault - Credential ManagerIt captures data not only from networks, but also from websites, FTP servers, and even some programs. This method works even if the laptop isn't currently connected to the network.
How to open the vault:
- Click
Win + R, enterrundll32.exe keymgr.dll,KRShowKeyMgrand pressEnter. - In the window Saved Usernames and Passwords Find the entry with the name of your Wi-Fi network.
- Expand the entry and click "Show" — the password will be displayed in the field Network Password.
⚠️ Attention: In some builds Windows 10 (especially after major updates) this method may not work - the Wi-Fi entry is simply missing from the list. In this case, use CMD or PowerShell.
Via Windows Settings|Command Prompt (CMD)|Credential Manager|Other option-->
4. Using PowerShell to extract passwords
PowerShell — a more powerful tool than CMD, and it can also display saved Wi-Fi passwords. This method is useful if standard methods don't work or you need to export the data to a file.
Open PowerShell as administrator and run the command:
(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 script will output a table with all saved networks and their passwords. If you want to save the result to a file, add the following to the end:
| Out-File -FilePath "$env:USERPROFILE\Desktop\WiFi_Passwords.txt"
File WiFi_Passwords.txt will appear on the desktop. This method is the only one that allows you to export passwords from all networks at once in a convenient format.
| Method | Requires admin rights | Shows all networks | Export to file |
|---|---|---|---|
| Windows Settings | ❌ No | ❌ Only the current one | ❌ No |
| Command Prompt (CMD) | ✅ Yes | ✅ All saved | ✅ Yes |
| Credential Manager | ❌ No | ❓ Depends on the version | ❌ No |
| PowerShell | ✅ Yes | ✅ All saved | ✅ Yes |
5. Third-party programs: when standard methods don’t work
If none of the above methods work, specialized utilities can help. They can extract passwords even from damaged network profiles or when Windows refuses to show them. Let's consider 3 proven programs:
- 🔐 WirelessKeyView (from NirSoft) is a portable utility that doesn't require installation. It displays all saved Wi-Fi passwords, including hidden networks. Download from the official website.
- 📡 WiFi Password Revealer — a simple program with a graphical interface. Suitable for beginners, as it doesn't require entering commands.
- 🛠️ Magical Jelly Bean WiFi Password Revealer - extracts passwords and allows you to export them to
CSVorTXT.
⚠️ Attention: Download programs only from official developer websites! Many "Wi-Fi hackers" on the internet contain viruses or Trojans. Check the files before using them. VirusTotal.
How to protect your passwords from being extracted?
To prevent password extraction from your laptop, use WPA3 encryption (instead of WPA2) and configure MAC address filtering on your router. Also, update your router's firmware regularly—this patches vulnerabilities that attackers can exploit.
What to do if none of the methods worked?
If you've tried all the methods but still can't find your password, there may be a few reasons:
- The network is connected via WPSIn this case, the password is not saved in the system; connection is established using the PIN code from the sticker on the router.
- The network profile is corrupted. Try "forgetting" the network in your Wi-Fi settings and reconnecting.
- The password has been changed on the router. If someone changes the password on the router, the old data on the laptop will become outdated.
- A corporate network (802.1X) is used. Such networks require authentication through a server (for example, in offices or universities), and the password is stored elsewhere.
If the problem is with the router, there are two options:
- 🔄 Reset the router to factory settings (button
Reseton the back panel). After this, the password will be the default one (indicated on the sticker). - 📞 Contact your provider - they can reset your password remotely or remind you of it (if the network is provided by the provider).
FAQ: Frequently Asked Questions About Wi-Fi Passwords in Windows 10
Is it possible to find out the password for a Wi-Fi network to which the laptop is not connected?
No, if the laptop has never been connected to this network, Windows doesn't store her password. The only ways are:
- Look at the password on the router sticker.
- Connect to the network at least once (enter the password manually).
- Reset the router to factory settings (the password will become default).
Why is there no Security tab in Wireless Network Properties?
This happens in two cases:
- You are connected via WPS (button on the router) - no password is used.
- The network is configured as public (guest), and Windows does not save the password.
Solution: Try connecting again by entering the password manually, or use CMD.
Is it possible to find out my neighbor's Wi-Fi password?
Technically yes, but that's illegally (Article 272 of the Criminal Code of the Russian Federation). If the network is not password-protected, connecting to it is legal, but:
- Using someone else's internet without permission may be considered theft of services (Article 165 of the Criminal Code of the Russian Federation).
- Many providers block illegal connections MAC address.
- The network owner can track your device through the router log.
It is better to ask for the password directly or use mobile internet.
How to protect your Wi-Fi from password theft?
To make things more difficult for attackers:
- Use WPA3 instead of WPA2 (settings in the router's web interface).
- Turn it off WPS - This protocol is vulnerable to brute force.
- Set up MAC address filtering (allow connection only to your devices).
- Change your password regularly (every 3-6 months).
Do these methods work on Windows 11?
Yes, all methods (except Credential Manager) work on Windows 11The interface has changed slightly, but the essence remains the same:
- IN Windows 11 path to Wi-Fi settings:
Settings → Network & Internet → Wi-Fi → Manage known networks. - Teams
CMDAnd PowerShell remained unchanged.