Forgot your home Wi-Fi password, but your computer is connected to the network? This situation is familiar to many: your router was set up by your ISP or a friend, the password was entered once, and then forgotten. Luckily, Windows 10 and 11 There are built-in tools that allow you to retrieve saved password Without resetting the router or calling support. In this article, we'll cover all the working methods—from standard settings to the command line and third-party utilities.
Important: The methods only work if the computer already connected to the target Wi-Fi network. If the connection is lost or the password has never been entered on this device, alternative solutions will be required (such as resetting the router or accessing its web interface). Also, keep in mind that extracting passwords from other people's devices without the owner's consent may be illegal—use the instructions. only for their networks.
We have tested all methods on the latest versions. Windows 11 23H2 And Windows 10 22H2 (May 2026 updates). If your system is outdated, some menu items may differ - update the OS via Settings → Windows Update.
1. View your password through Windows Settings (the easiest way)
This method does not require administrator rights and works on all versions of Windows starting from Windows 7Suitable for users who are afraid of the command line or third-party programs.
Instructions:
- 🖱️ Open the menu
Startand selectParameters(gear icon). - 📡 Go to the section
Network and Internet → Wi-Fi. - 🔍 Scroll down and click
Managing known networks. - 📋 Select your Wi-Fi network from the list and click
Properties. - 🔑 In the section
Network propertiesfind the lineNetwork passwordand press the buttonShow symbolson the right.
Done! The password will be displayed in the text field. If the button Show symbols is inactive, then your account does not have administrator rights - use the following method.
2. Extracting the password via the Network and Sharing Center (alternative GUI method)
This method duplicates the functionality of the previous one, but uses the classic control panel. It's useful if the new interface Windows settings works unstable or you prefer the "old school".
Step-by-step instructions:
- Click
Win + R, enterncpa.cpland pressEnter. - In the window that opens, find
Wireless network(Wi-Fi), right-click on it and selectState. - Click the button
Wireless network properties. - Go to the tab
Security. - Check the box
Show entered characters— the password will become visible.
If the tab Security If it's missing, then the Wi-Fi adapter driver isn't installed correctly. Update it via device Manager (chapter Network adapters).
What should I do if the "Show input characters" button is inactive?
This means your account does not have administrator rights. Solutions:
1. Temporarily obtain administrator rights from the PC owner.
2. Use the command line method (section 3 of this article) - it often works without admin rights.
3. Boot into Safe mode with command prompt (click F8 when booting the PC).
3. Command Prompt: A Universal Method for All Windows Versions
If the graphical interface refuses to show the password, help will come command lineThis method works even on damaged systems and does not require installing additional software.
Run the following commands in order:
netsh wlan show profiles
This command will list all saved Wi-Fi networks. Remember the exact name of your network (case is important!).
netsh wlan show profile name="NETWORK_NAME" key=clear
Replace NETWORK_NAME the name of your Wi-Fi network (in quotation marks!). In the results, find the line Key content - this is the password.
Example output (password highlighted):
...Security parameters
Authentication type: WPA2-Personal
Encryption type: CCMP
Key contents: 12345678QwErTy
...
Open CMD as administrator
Check the network name is correct (case sensitive!)
Copy the password to a safe place
Close command prompt after use-->
⚠️ Attention: Don't enter commands from untrusted sources! Attackers can disguise commands to steal data as "helpful instructions." All commands provided here are safe and documented by Microsoft.
4. Using PowerShell for Advanced Users
PowerShell — a more powerful tool than the standard command line. It can not only reveal passwords but also export all saved networks to a file.
Open PowerShell as administrator and run:
(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]@{SSID=$name;PASS=$pass}} | Format-Table -AutoSize
This command will output a table with all saved networks and their passwords. To export to a file, add the following to the end:
| Out-File -FilePath "C:\WiFi_Passwords.txt" -Encoding UTF8
File WiFi_Passwords.txt will appear on the disk C:\. Remove it after use.to avoid data leakage.
| Method | Admin rights required | Works on Windows 7 | Export to file |
|---|---|---|---|
| Windows Settings | No | No | No |
| Network and Sharing Center | No | Yes | No |
| Command line | Yes | Yes | No |
| PowerShell | Yes | Yes | Yes |
5. Third-party programs: when standard methods don’t work
If Windows' built-in tools refuse to reveal your password (for example, due to damaged system files), you can use specialized utilities. We tested three reliable programs:
- 🔧 WirelessKeyView (from NirSoft) is a portable utility that doesn't require installation. It displays all saved Wi-Fi passwords in a table with the ability to export them to
.txtor.html. - 🛡️ WiFi Password Revealer — a simple program with a minimalist interface. Supports Windows 10/11 And Windows 7.
- 📊 Magical Jelly Bean WiFi Password Revealer — displays passwords in a convenient format with the ability to copy them with one click.
Warning: Download programs only from official websites! Many "cracked" versions of password extraction utilities contain malware. Check the files for malware before using them. VirusTotal.
⚠️ Attention: Antivirus software may block password extraction utilities (for example, Kaspersky or Avast (They are considered "potentially dangerous"). This is a false positive—please add the program to your antivirus exclusions for the duration of its operation.
6. If nothing works: resetting the router and alternative solutions
In rare cases, standard methods may not work:
- Windows system files are damaged;
- The password is not saved in the system (for example, connecting via WPS);
- The account is restricted by domain policies (in corporate networks).
Alternative options:
- 🔄 Resetting the router to factory settings (button
Reseton the back panel). Minus: you will have to configure the network again. - 🌐 Router web interfaceConnect to the router via cable and enter into the browser
192.168.0.1or192.168.1.1, log in (logins/passwords likeadmin/adminusually indicated on the router sticker) and find the sectionWireless → Security. - 📱 Provider's mobile application. Many operators (for example, Rostelecom or MTS) allow you to manage Wi-Fi through your personal account.
If you rent a router from a provider, contact their support team—they can provide you with the password over the phone after verifying your personal information.
FAQ: Frequently asked questions about Wi-Fi passwords on your computer
Is it possible to find out the password for a Wi-Fi network that the computer was previously connected to but is not currently connected to?
Yes, if the network is saved in the system. Use the following commands:
netsh wlan show profiles
Then:
netsh wlan show profile name="NETWORK_NAME" key=clear
Even if the network is inactive, its password may be stored in the Windows cache.
Why is there no "Show Characters" button in Windows Settings?
This happens for three reasons:
- Your account does not have administrator rights.
- The Wi-Fi adapter driver is outdated or corrupted (update it via
device Manager). - The password is not saved in the system (for example, if the connection was through WPS or guest access).
Is it safe to use third-party password extraction programs?
Yes, if you download them from official websites developers. We recommend:
- WirelessKeyView (nirsoft.net)
- WiFi Password Revealer (magicaljellybean.com)
Please check the file before using it. VirusTotal and temporarily disable your antivirus (it may block legitimate utilities).
How to protect your Wi-Fi from hacking after your password has been extracted?
If you suspect that your password may have become known to third parties, follow these steps:
- Change the password in the router settings (section
Wireless → Security). - Set the encryption standard
WPA3-Personal(if supported). - Turn it off WPS - This protocol is vulnerable to brute force attacks.
- Enable filtering by
MAC addresses(chapterWireless → MAC Filter).
We also recommend regularly updating your router's firmware via its web interface.
Is it possible to find out the Wi-Fi password on MacOS?
Yes, on MacOS this is done through A bunch of keys:
- Open
Spotlight(Cmd + Space) and enterBunch of keys. - Find the name of your Wi-Fi network in the list.
- Double-click on the entry and check the box.
Show passwordand enter your Mac account password.