If you have ever forgotten the Wi Fi password on your Windows 10 laptop or desktop, you know that recovering it is not always obvious. Windows stores wireless profiles and their passwords in the operating system, and you can access them directly from the graphical interface or Command Prompt.
With the right steps, you can view saved Wi Fi credentials, troubleshoot connection issues, and share network access securely with trusted users.
| Method | Where it works | When to use it | Visibility |
|---|---|---|---|
| Settings App | Home and Pro editions | Quick visual review | User friendly, no admin console needed |
| Network and Sharing Center | All Windows 10 editions | Graphical overview of profiles | Requires clicking through multiple panels |
| Command Prompt netsh | All editions | Scripting, remote, or precise lookup | Text output, easy to copy |
| PowerShell Get-WlanProfile | Pro, Enterprise, Education | Advanced users preferring structured output | Requires admin rights for key export |
Finding Wi Fi Password Using Settings App
Step by step in Windows Settings
The Settings app offers the simplest path to view saved Wi Fi passwords on Windows 10 for most users. This method shows the network key in clear text after confirming your profile is linked to a wireless adapter.
Navigate to Settings, then Network & Internet, followed by Wi Fi. Under the related network, choose the connected network or pick another saved profile and request its properties to reveal the security key.
Keep your user account control prompts in mind, as some options may require administrator approval depending on system policies.
Using Network and Sharing Center
Graphical interface for wireless profiles
The classic Network and Sharing Center remains a reliable way to manage Wi Fi connections and to locate saved passwords without opening a terminal.
Open Network and Sharing Center from the Start menu or Control Panel, click the current network name, and then use the Wireless Properties section to display characters instead of dots for the network security key.
This approach is ideal when you need to confirm the exact characters without relying on command line output formatting.
Command Prompt netsh method
View and export Wi Fi keys from terminal
For quick scripted checks or remote sessions, the netsh wlan show profile command in Command Prompt gives you detailed information about every stored profile on Windows 10.
You can combine show profile with key=clear to reveal the security key, export profile to XML for offline documentation, and filter results to only the network names you actually use.
This method works even when graphical options are restricted, as long as you launch Command Prompt with sufficient privileges.
PowerShell Get-WlanProfile approach
Structured output for advanced users
PowerShell provides a more structured alternative to netsh, using Get-WlanProfile to enumerate wireless networks and Select-Object to extract specific fields like SSID and profile key material.
Because some key extraction operations require elevation, run PowerShell as Administrator and use ConvertTo-SecureString along with [Runtime.InteropServices.Marshal]::PtrToStringUni to decode the protected key string.
This technique is especially useful when you want to automate audits, generate inventories, or integrate Wi Fi discovery into larger configuration management scripts.
Securing and Managing Saved Wi Fi Credentials
- Use the Settings app for fast, user friendly viewing of Wi Fi passwords on everyday Windows 10 machines.
- Leverage netsh wlan show profile key=clear for a quick command line summary of all saved network profiles.
- Run PowerShell Get-WlanProfile as Administrator when you need structured output or plan to automate audits.
- Remember that stored keys are protected by your user account; export or share them only over secure channels.
- Prefer router admin interfaces for initial setup or guest network distribution instead of sharing device level passwords.
- Periodically review saved profiles and remove obsolete networks to reduce attack surface on old or unused SSIDs.
FAQ
Reader questions
Can I view Wi Fi password if I am not admin on Windows 10?
You can view profile names, but seeing the actual network key usually requires administrator rights, since Windows protects stored credentials from non privileged access.
Why does netsh wlan show profile key not return anything useful on my PC?
This often happens when no wireless adapter is installed, the WLAN AutoConfig service is stopped, or the profile was imported from another device and not associated with the current hardware.
Is it safe to show all Wi Fi passwords stored on Windows 10?
Displaying stored keys is safe locally, but avoid sharing screenshots or exporting the list to untrusted locations, because the passwords grant direct access to your wireless networks and connected resources.
How do I find the Wi Fi password on Windows 10 if I forgot it and cannot connect at all?
Use another device with access to the router admin panel to recover the passphrase, or temporarily connect via Ethernet to view saved credentials on Windows through Settings or netsh without requiring an active wireless association.