Forgot your home Wi-Fi password, and the sticker on your router has worn off? Or do you need to connect a new device, but can't remember the password? Windows 10 There are several ways to retrieve a saved wireless network password—and you don't need to be an IT professional to do it. In this article, we'll cover 5 proven methods, from standard system tools to advanced utilities that will help even if you haven't accessed your router settings in a while.
It is important to understand: all the described methods only work for networks to which your computer is connected. already connectedIf Windows 10 has never connected to the desired Wi-Fi, you won't be able to extract the password from the system—you'll have to reset the router or search for the data on another device. Also, remember security: don't use these methods to hack other people's networks (this is punishable under Article 272 of the Criminal Code of the Russian Federation for unauthorized access to computer information).
Before you begin, please check:
- 🔹 Your PC is connected to the target Wi-Fi network (or has been connected previously).
- 🔹 You have administrator rights (for some methods).
- 🔹 The antivirus does not block access to system files (temporarily disable protection if errors occur).
1. View your password through Windows Settings (the easiest way)
If you need the password for the current network your computer is connected to, this method is the best option. It doesn't require the command line or third-party programs—everything is done through a graphical interface.
Instructions:
- Open the menu
Startand selectParameters(gear icon) or clickWin + I. - Go to the section
Network and Internet. - In the left menu, select
Wi-Fi, then pressManaging known networks. - Find the required network in the list and click on its name.
- Click
Properties(orAdditional options(in some versions of Windows). - Scroll down to the block
Security parametersand check the boxShow entered charactersnext to the fieldNetwork security key.
Done! The password will be displayed in the text field. You can copy it (Ctrl + C) or rewrite it manually. Please note: if the field is empty or grayed out, it means Windows has not saved the password (for example, if the connection was via WPS or Enterprise authentication).
Make sure you are connected to the correct network|Check your administrator rights|Update your Wi-Fi adapter drivers|Restart your computer and try again-->
⚠️ Attention: In some Windows 10 builds (especially enterprise builds), the section Network properties may be blocked by security policies. In this case, use the alternative methods in this article.
2. Extracting the password via the Network and Sharing Center (alternative GUI method)
This method works in all versions of Windows 10 and is suitable if the first method didn't work. Here we use the classic Control Panel, which preserves more technical details.
Step-by-step instructions:
- 🖱️ Right-click on the icon
Wi-Fiin the tray (bottom right on the taskbar) and selectOpen Network and Internet settings. - 📄 In the window that opens, scroll down and click
Network and Sharing Center. - 🔗 Click on the active connection (link next to
Connections). - 🛠️ In the new window, click the button
Wireless network properties. - 🔐 Go to the tab
Securityand check the boxShow entered characters.
The password will appear in the field Network security key. If the button Wireless network properties is inactive, this means that Windows is using a connection profile without a saved password (for example, when automatically connecting via Windows Domain).
| Way | Admin rights required | Works for all networks | Complexity |
|---|---|---|---|
| Windows Settings | ❌ No | ✅ Only for the current | ⭐⭐ (simple) |
| Network and Sharing Center | ❌ No | ✅ For all saved | ⭐⭐ (simple) |
| Command line | ✅ Yes | ✅ For all saved | ⭐⭐⭐ (average) |
| PowerShell | ✅ Yes | ✅ For all saved | ⭐⭐⭐ (average) |
| Third-party utilities | ✅ Yes | ✅ For everyone + additional information | ⭐⭐⭐⭐ (advanced) |
3. Using the command line (universal method)
Command line (CMD) allows you to extract passwords from all saved Wi-Fi networks, even those you haven't connected to in a while. This method is useful if the graphical interface doesn't display data or you need to export a list of networks.
Instructions:
- Open Command Prompt as Administrator: Press
Win + Xand selectCommand Prompt (Administrator)orWindows PowerShell (Administrator). - Enter the command to view all saved networks:
netsh wlan show profilesRemember the exact name of the network you need (case is important!).
- Extract the password with the command (replace
NETWORK_NAMEto the real name):netsh wlan show profile name="NETWORK_NAME" key=clear - Find the line
Key contentin the blockSecurity parameters- this is the password.
Example output:
Profile name: MyWiFi_5G
...
Security parameters
Authentication type: WPA2-Personal
Encryption type: CCMP
Key contents: 12345678
⚠️ Attention: In some corporate networks (with authentication 802.1X) the password may not be displayed or may be masked by asterisks. This method also does not work for networks connected via VPN or proxy.
4. Extracting Password via 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 for backup.
Method 1: View the password of one network
(Get-NetConnectionProfile | Where-Object { $_.Name -eq "NETWORK_NAME" }).Password
Replace NETWORK_NAME to the real name.
Method 2: Export all Wi-Fi passwords to a file
$output = @()$profiles = netsh wlan show profiles | Select-String "All user profiles"
foreach ($profile in $profiles) {
$profileName = ($profile -split ":")[1].Trim()
$password = (netsh wlan show profile name="$profileName" key=clear | Select-String "Key content").Line.Split(":")[1].Trim()
$output += [PSCustomObject]@{ Network=$profileName; Password=$password }
}
$output | Export-Csv -Path "C:\WiFi_Passwords.csv" -NoTypeInformation -Encoding UTF8
This script will create a file WiFi_Passwords.csv on disk C: with all networks and passwords.
How to open PowerShell with administrator rights?
Click Win + S, enter PowerShell, then select Run as administrator in the right panel. Or use the combination Win + X → Windows PowerShell (Administrator)
5. Third-party programs for viewing Wi-Fi passwords
If standard methods don't work or you need more information (such as connection history), you can use specialized utilities. These not only reveal passwords but also allow you to manage networks, export data, and even restore lost profiles.
Top 3 proven programs:
- 🔧 WirelessKeyView (from NirSoft) is a free utility that displays all saved passwords in one window. Supports export to
.txtAnd.html. Download from the official website. - 🛡️ WiFi Password Revealer — a simple program with the ability to copy passwords to the clipboard. Works without installation (portable version).
- 📊 Magical Jelly Bean WiFi Password Revealer — displays passwords in a table format with additional information about encryption types.
How to use WirelessKeyView:
- Download and unzip the archive with the program (no installation required).
- Launch
WirelessKeyView.exeon behalf of the administrator. - In the main window, you will see a list of all saved networks with speakers:
Network Name(Name),Key (Ascii)(password),Key Type(encryption type). - To copy the password, right-click on the line and select
Copy Key.
⚠️ Attention: Antiviruses (for example, Avast or Kaspersky) can block utilities like WirelessKeyView, considering them potentially dangerous. This is a false positive—add the program to the exceptions list or temporarily disable protection.
6. How to find out your Wi-Fi password if Windows 10 hasn't saved it
If none of the above methods work, it means Windows hasn't saved the password in its database. This can happen in three cases:
- 🔄 The connection was configured via WPS (button on the router) without entering a password.
- 🏢 The network uses corporate authentication (802.1X, PEAP, EAP-TLS).
- 🔄 The connection was made through third-party software (for example, Connectify or VPN client).
What to do in such cases:
- Look at the password on the router: Turn the device over - often the password is on a sticker next to
SSIDAndPasswordIf there is no sticker, go to the router's web interface (usually at192.168.0.1or192.168.1.1) and check the sectionWireless → Security. - Use another device: Check the password on your phone, tablet, or second computer that is connected to this network. Android you can use the app WiFi Password Viewer (root rights required).
- Reset your router: If you have lost access to your router settings, click the button
Reseton the back panel (hold for 10 seconds). After the reset, use the data from the sticker (the login is usuallyadmin).
If the router is rented from a provider (for example, Rostelecom or Beeline), resetting your device may block internet access. In this case, contact support—they will provide you with updated login information.
Bonus: How to Protect Your Wi-Fi from Hacking
Once you know your network password, it's a good idea to make sure it's well protected. 5 Key Recommendations:
- 🔒 Use WPA3: In the router settings, select the encryption type
WPA3-Personal(orWPA2/WPA3(for compatibility). This is the most reliable standard today. - 🔑 Complex password: Come up with a combination of 12+ characters with letters, numbers and special characters (e.g.
Green$Tree7!Lamp2). Avoid simple sequences like12345678orqwerty. - 📡 Disable WPS: Function Wi-Fi Protected Setup vulnerable to brute-force attacks. Find the option in your router settings
WPSand deactivate it. - 👤 Hide SSID: In the wireless network settings, disable the option
Broadcast SSID(orHide network). This will not make the network invulnerable, but it will reduce the number of connection attempts. - 📱 Guest network: If you have guests visiting you often, create a separate network with limited access to local devices (optional
Guest Networkin the router).
Check who is connected to your Wi-Fi right now: in the router's web interface, find the section DHCP Clients List or Connected DevicesIf you see unfamiliar devices, change the password and reconnect your gadgets.
FAQ: Frequently asked questions about viewing Wi-Fi passwords in Windows 10
Is it possible to find out the password for a Wi-Fi network I've never connected to?
No, Windows 10 only stores passwords for networks your computer has connected to at least once. If the network isn't listed netsh wlan show profiles, it's impossible to extract the password from the system. In this case, the only option is to reset the router or find the password on another device.
Why is the password field empty in Network Properties?
This happens in three cases:
- The connection was set up via WPS (button on the router) without entering a password.
- The network uses corporate authentication (eg. 802.1X with login/password).
- The network profile is damaged or deleted (try connecting again).
How to export all Wi-Fi passwords to a file for backup?
Use this script to PowerShell (run as administrator):
$output = @()$profiles = netsh wlan show profiles | Select-String "All user profiles"
foreach ($profile in $profiles) {
$profileName = ($profile -split ":")[1].Trim()
$password = (netsh wlan show profile name="$profileName" key=clear | Select-String "Key content").Line.Split(":")[1].Trim()
$output += [PSCustomObject]@{ Network=$profileName; Password=$password }
}
$output | Export-Csv -Path "$env:USERPROFILE\Desktop\WiFi_Backup.csv" -NoTypeInformation -Encoding UTF8
File WiFi_Backup.csv will appear on the desktop.
Is it possible to find out the Wi-Fi password on Windows 10 without administrator rights?
Partially. Through Windows Settings or Network and Sharing Center You can see the password for the current network without admin rights. However, to view all saved networks, CMD/PowerShell or third-party utilities, administrator rights are required.
What should I do if my antivirus is blocking WirelessKeyView?
This is a false positive—many antivirus programs are suspicious of programs that read system data. Solutions:
- Add a file
WirelessKeyView.exein antivirus exceptions. - Temporarily disable protection while the utility is running.
- Download the program from the official website NirSoft (avoid third party sources).