Forgot your home Wi-Fi password and there's no sticker with your connection information on your router? Windows 7 There are several ways to retrieve a saved network security key—both through standard system tools and third-party software. This guide is suitable if your computer or laptop is already connected to the desired network (or has been connected previously) and if you have administrator rights.
Unlike Windows 10/11, where viewing a password is simplified to a couple of clicks, in Windows 7 the process is a little more complicated, but doesn't require any special knowledge. We'll take a look. 5 working methods: from the simplest (through the graphical interface) to advanced (using the command line and scripts). You will also learn how bypass restrictions if the "Show symbols" button is inactive — This is a common problem for users with outdated network adapter drivers.
Important: If you are trying to obtain someone else's network password (for example, a neighbor's) without their consent, this violates the law on personal data and may result in administrative liability. All methods in this article are intended solely to restore access to your network.
1. Method: via the Network and Sharing Center
The most obvious and safest method is to use the built-in settings. Windows 7It works if your computer is currently connected to the target network (or has previously connected to it). These instructions apply to all system editions: Home Basic, Professional, Ultimate.
Steps:
- 🖱️ Right-click on the network icon in the system tray (bottom right, next to the clock) and select
Network and Sharing Center. - 📋 In the window that opens, find the section
Managing wireless networks(on the left in the menu). - 🔍 In the list of saved networks, select the one whose password you want to find out and right-click on it →
Properties. - 🔐 Go to the tab
Securityand put a check mark next toShow entered characters. The password will be displayed in the field.Network security key.
If there is a tick Show entered characters is inactive (grayed out), meaning your account doesn't have sufficient permissions. Solution:
⚠️ AttentionTo unlock the field, please log in to your account. administrator or temporarily elevate the current user's privileges via Control Panel → Administrative Tools → Computer Management → Local Users and Groups.
Make sure your computer is connected to the correct Wi-Fi network|
Check your administrator rights (right-click on “Computer” → “Manage”)|
Update your network adapter driver if the "Show characters" button is grayed out|
Close all programs that may block access to network settings (antiviruses, VPN)
-->
Method 2: via command line (universal method)
If the GUI doesn't work or you prefer console commands, use utility netshThis method will show passwords. all saved networks, even those you haven't connected to for a long time.
Instructions:
- Open Command Prompt as Administrator:
- 🔍 Click
Win + R, entercmd, thenCtrl + Shift + Enter. - 🛡️ Confirm launch with administrator rights in the window UAC.
- 🔍 Click
netsh wlan show profiles
Remember the name of the required network (field User profile name).
NETWORK_NAME to the real name):
netsh wlan show profile name="NETWORK_NAME" key=clear
The password you are looking for will be in the section Security parameters, line Key content.
Example command output (password highlighted):
Security settings:
Authentication type: WPA2-Personal
Encryption type: CCMP
Key content: your_password_here
Method 3: Using PowerShell (for advanced users)
PowerShell — a more powerful tool than the command line, it allows you to export passwords to a file. This method is useful if you need to save data for backup or transfer settings to another computer.
Steps:
- 📜 Open PowerShell as administrator (similarly
cmd, but enterpowershellin the windowWin + R). - 🔄 Enter the command to export all Wi-Fi profiles to a file:
(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Out-File "$env:USERPROFILE\Desktop\WiFi-Passwords.txt"File
WiFi-Passwords.txtwill appear on the desktop. - 🔍 Open the file and find the line
Key contentfor the required network.
⚠️ AttentionThe password file contains confidential information. After use, delete it or store it in a secure location (e.g., in an encrypted archive).
What to do if PowerShell blocks script execution?
By default, Windows 7 script execution policies may prevent commands from running. To unblock them, run the following in PowerShell:
Set-ExecutionPolicy RemoteSigned -Force
After work, return the settings back:
Set-ExecutionPolicy Restricted -Force
4. Method: third-party programs for viewing passwords
If standard methods fail, specialized utilities can help. They're convenient because they display passwords in a user-friendly interface and often support data export. We recommend only proven programs open source or from reputable developers:
| Program | Peculiarities | Download link | Windows 7 support |
|---|---|---|---|
| WirelessKeyView (NirSoft) | Shows all saved Wi-Fi passwords, export to CSV/HTML | NirSoft official website | Yes (32/64-bit) |
| WiFi Password Revealer | Simple interface, copying password to clipboard | Magical Jelly Bean | Yes |
| PassFab WiFi Key | Recovering passwords even after reinstalling Windows (if the configuration file is not deleted) | PassFab Official Website | Yes (paid) |
Instructions for WirelessKeyView (free utility):
- Download the program from official website (check the file for viruses before running).
- Unzip the archive and run
WirelessKeyView.exe(administrator rights are not required). - Find the required network in the table - the password will be in the column
Key (Ascii).
Via the Network and Sharing Center |
Using the command line|
I use third-party programs|
I reset the router to factory settings
-->
Method 5: Password recovery via a router
If none of the methods worked (for example, the network profile is damaged or deleted), the last option is to get the password directly from routerTo do this, you will need physical access to the device and login details for the web interface (usually found on a sticker on the bottom).
Steps:
- 🌐 Connect to the router via cable or Wi-Fi (if the connection is still active).
- 🔗 Enter the router's IP address in your browser (usually
192.168.0.1or192.168.1.1). - 🔑 Enter your login and password (usually by default
admin/adminoradmin/empty). - 📡 Go to the section
Wireless(orWi-Fi,Wireless network) →Wireless Security. - 🔐 Field
Password,KeyorPassphrasecontains the current password.
⚠️ Attention: If you have not changed the factory settings of the router, the password may be the same as the one indicated on the device sticker (fieldWi-Fi PasswordorNetwork Key). In this case, there is no need to restore it through Windows.
Popular router models and Wi-Fi settings:
- 📶 TP-Link:
Wireless → Wireless Security → Password - 📶 ASUS:
Wireless Network → Authentication Settings → WPA Pre-Shared Key - 📶 D-Link:
Wi-Fi → Security → Network Key - 📶 Zyxel Keenetic:
Wi-Fi Network → Access Point → Network Key
Common mistakes and their solutions
When trying to view the password in Windows 7 Users encounter typical problems. We've compiled the most common ones and how to fix them:
| Error | Cause | Solution |
|---|---|---|
| The "Show symbols" button is inactive | No administrator rights or network profile is corrupted | Launch the network properties window as an administrator or use netsh |
Team netsh gives the error "Profile not found" |
The network profile has been deleted or has never been connected. | Check the network name with the command netsh wlan show profiles or recover your password through your router |
| The list of networks shows only the current one, and the old ones are missing. | Windows 7 only stores the last profile by default. | Use WirelessKeyView - It shows all saved passwords, even hidden ones |
| After entering the command, the message "The requested operation requires elevation" appears. | The command prompt was launched without administrator rights. | Close cmd and reopen through Win + X → Command Prompt (Administrator) |
If none of the methods work, your network profile may be corrupted. In this case:
- Delete your current profile via
Network and Sharing Center → Manage wireless networks(right-click on the network →Delete). - Reconnect to the network by entering the password (if you remember it).
- Use
netshor WirelessKeyViewto retrieve the saved password.
netsh wlan export profile key=clear folder="%USERPROFILE%\Desktop\WiFi-Backup"
The profile files will be saved on your desktop in the folder WiFi-Backup.-->
FAQ: Answers to frequently asked questions
Is it possible to find out the password for a Wi-Fi network I've never connected to?
No, Windows 7 Stores passwords only for networks your computer has connected to. To retrieve someone else's network password, you need to:
- Connect to it at least once (if you know the temporary password).
- Use specialized hacking programs (illegal and punishable!).
- Reset your router to factory settings (if you have physical access).
The legal way is to ask the network owner for the password.
Why doesn't Windows 7 show all saved networks like Windows 10?
IN Windows 7 By default, the graphical interface only shows the current network. To see all saved profiles:
- Use the command
netsh wlan show profiles. - Install WirelessKeyView - it displays the full list.
This is a limitation of the interface, not the system - all data is stored in the registry and accessible through the console.
How to protect your Wi-Fi passwords from being seen by other PC users?
If other people have access to your computer, we recommend:
- 🔒 Create a separate account without administrator rights for other users.
- 🛡️ Encrypt the folder with backup copies of Wi-Fi profiles (for example, via 7-Zip with a password).
- 🔄 Change the password on your router regularly (every 3–6 months).
- 🚫 Disable the service
Automatic WLAN configuration(but this will disrupt Wi-Fi).
The most secure way is to not save passwords on a shared computer.
Do these methods work on Windows 7 Starter or Home Basic?
Yes, all the methods described (except PowerShell in some assemblies Starter) work on all editions Windows 7, including:
- Starter (with restrictions on changing wallpaper, but not on network settings).
- Home Basic.
- Home Premium.
- Professional/Ultimate.
Exception: If your version Windows 7 The functionality is severely limited (for example, in enterprise builds), and some commands may be disabled. In this case, only third-party software can help.
Is it possible to recover a Wi-Fi password after reinstalling Windows?
If you haven't backed up your profiles, all saved passwords will be lost after reinstalling the system. However:
- 🔄 If you reinstalled Windows on the same drive, try restoring profile files from the folder
C:\ProgramData\Microsoft\Wlansvc\Profiles\Interfaces(requires administrator rights). - 💾 Use programs to recover deleted files (for example, Recuva or EaseUS Data Recovery).
- 📡 Reset the password on the router (button
Resetfor 10 seconds).
In the future, make backup copies of your profiles with the command netsh wlan export profile.