How to Find Your WiFi Password on Windows 11 (2026 Guide)
Quick Answer:
To find the password for the Wi-Fi network you are currently connected to in Windows 11, open Settings (Win + I), go to Network & internet > Wi-Fi, click on Wi-Fi properties, scroll down to View Wi-Fi security key, and click View.
To view passwords for previously saved networks you are not currently connected to, open Command Prompt as Administrator and run:
netsh wlan show profile name="YourNetworkName" key=clear
Look under Security settings for the line labeled Key Content to reveal your plain-text password.
Table of Contents
Method 1: Find Active Wi-Fi Password via Windows 11 Settings (Fastest) Method 2: Find Current Wi-Fi Password via Control Panel (Classic Method) Method 3: Find Any Saved Wi-Fi Password via Command Prompt (CMD) Method 4: View All Saved Wi-Fi Passwords at Once using PowerShell Method 6: Find Your Wi-Fi Password via Router Web Admin Interface Security & Privacy Best Practices for Stored Wi-Fi Passwords
Overview: How Windows 11 Stores Wireless Credentials
Whenever you connect your Windows 11 PC or laptop to a wireless network, the operating system generates a Wi-Fi Profile. This XML-based profile stores essential network details, including:
Service Set Identifier (SSID): The visible name of your Wi-Fi network.
Authentication Method: Such as WPA2-Personal, WPA3-Personal, or Enterprise WPA3.
Encryption Type: AES or TKIP encryption protocols.
Network Security Key: The pre-shared key (password) used to authenticate your device.
Windows 11 encrypts these network security keys locally inside protected system directories using the Windows Data Protection API (DPAPI). While the security key is hidden behind bullet points in graphical menus to prevent shoulder surfing, users with administrative access on the PC can easily reveal the plain-text password using native operating system features.
Whether you need to connect a new smartphone, share your home internet with a guest, or set up a smart TV, Windows 11 gives you multiple methods to retrieve your saved security credentials.
Method 1: Find Active Wi-Fi Password via Windows 11 Settings (Fastest)
If your laptop or PC is currently connected to the wireless network, the modern Settings app in Windows 11 provides the most direct graphical user interface (GUI) pathway.
Step-by-Step Instructions
Open Settings: Press
Win + Ion your keyboard, or right-click the Start menu icon and select Settings.Navigate to Network & Internet: From the left sidebar menu, click Network & internet.
Select Wi-Fi: On the right pane, click the Wi-Fi tab.
[Screenshot Suggestion: Windows 11 Settings window open to Network & internet > Wi-Fi, highlighting the Wi-Fi properties row.]
ALT Text: Windows 11 Settings app displaying Network and Internet menu with Wi-Fi settings selected.
Open Connection Properties: Click on Wi-Fi properties (or click directly on your active Wi-Fi connection name at the top).
Locate Security Key: Scroll down through the properties list until you locate the row labeled View Wi-Fi security key.
Reveal Password: Click the View button located adjacent to the hidden password field.
[Screenshot Suggestion: Close-up of the View Wi-Fi security key section in Windows 11 Settings showing the View button.]
ALT Text: Windows 11 Settings showing the View Wi-Fi security key button next to the masked security key field.
User Account Control (UAC) Prompt: If prompted by Windows User Account Control, click Yes to authorize administrative privilege.
View Security Key: Your plain-text Wi-Fi password will appear inside a clear text pop-up or box. You can now copy or write it down.
Common Pitfalls
Disconnects: This method only displays the security key for the network you are currently connected to. If you are offline or connected via Ethernet, the "View Wi-Fi security key" button will not appear in this specific properties pane. Use Method 3 or Method 4 below for offline networks.
Method 2: Find Current Wi-Fi Password via Control Panel (Classic Method)
For users familiar with legacy Windows interfaces or system administrators who prefer classic tools, the classic Control Panel Network and Sharing Center remains fully operational in Windows 11.
Step-by-Step Instructions
Open Run Dialog: Press
Win + Rto bring up the Run dialog box.Execute Network Connections Command: Type
ncpa.cpland press Enter or click OK. This opens Network Connections directly.
[Screenshot Suggestion: Windows Run dialog box with ncpa.cpl typed into the open field.]
ALT Text: Windows Run command dialog box executing ncpa.cpl to open Network Connections.
Locate Wi-Fi Adapter: Find your active Wi-Fi network adapter (it will display green signal bars and your network name).
Open Wi-Fi Status: Double-click the Wi-Fi adapter icon, or right-click it and select Status.
[Screenshot Suggestion: Network Connections window displaying active Wi-Fi adapter status.]
ALT Text: Windows Control Panel Network Connections showing active Wi-Fi network interface card status.
Access Wireless Properties: In the Wi-Fi Status dialog window, click the Wireless Properties button located in the middle section.
Switch to Security Tab: In the new window that pops up, click the Security tab at the top.
[Screenshot Suggestion: Wireless Network Properties window showing the Security tab with Network security key field.]
ALT Text: Wireless Network Properties Security tab with Network security key and Show characters check box.
Reveal Characters: Under the Network security key field, place a checkmark in the box labeled Show characters.
Read Password: The black dots hiding your security key will immediately transform into readable plain text.
Method 3: Find Any Saved Wi-Fi Password via Command Prompt (CMD)
The Command Prompt method is the most powerful technique because it allows you to view saved Wi-Fi passwords for all networks your Windows 11 PC has ever connected to in the past—even if you are currently offline or hundreds of miles away from the access point.
Step-by-Step Instructions
Step 1: Open Command Prompt as Administrator
Press the Windows Key or click the Start button.
Type
cmdinto the search bar.Right-click Command Prompt from the search results and select Run as administrator. (Alternatively, click Run as administrator in the right preview panel).
Click Yes when the User Account Control (UAC) prompt appears.
[Screenshot Suggestion: Windows 11 Start menu search displaying Command Prompt with Run as administrator highlighted.]
ALT Text: Windows 11 Start menu search showing Command Prompt application with Run as administrator option highlighted.
Step 2: List All Saved Wi-Fi Profiles
In the command console, type the following command and press Enter:
netsh wlan show profiles
This outputs a list of all wireless network profiles saved on your computer under User profiles:
Profiles on interface Wi-Fi:
Group policy profiles (read only)
---------------------------------
<None>
User profiles
-------------
All User Profile : Home_5G_Network
All User Profile : Office_Guest_WiFi
All User Profile : CoffeeShop_Free_WiFi
[Screenshot Suggestion: Command Prompt window displaying output of netsh wlan show profiles command.]
ALT Text: Command Prompt window output showing list of saved wireless user profiles in Windows 11.
Step 3: Extract Plain-Text Password for Specific Network
Identify the exact name of the network profile you want to inspect. Then, run the following command, replacing YourNetworkName with the actual SSID name (keep the quotation marks if the network name contains spaces):
netsh wlan show profile name="YourNetworkName" key=clear
Example:
netsh wlan show profile name="Home_5G_Network" key=clear
Step 4: Locate Key Content
Scroll down through the detailed network configuration summary to the Security settings section:
Security settings
-----------------
Cost : Unrestricted
Security key : Present
Cipher : CCMP
Authentication : WPA2-Personal
Key Content : MySuperSecretPassword123!
The string displayed directly next to Key Content is your exact Wi-Fi password.
Method 4: View All Saved Wi-Fi Passwords at Once using PowerShell
Extracting Wi-Fi passwords one by one using CMD can be tedious if you have dozens of saved networks. Using Windows PowerShell, you can run a single script line that scans every saved profile on your system and generates a clean, organized table of every SSID alongside its plain-text password.
Step-by-Step Instructions
Launch PowerShell as Admin: Press
Win + Xand select Terminal (Admin) or PowerShell (Admin).Execute Batch Password Retrieval Script: Copy and paste the following one-line PowerShell command into the terminal window and press Enter:
(netsh wlan show profiles) | Select-String "\:(.+)$" | ForEach-Object { $name = $_.Matches.Groups[1].Value.Trim(); $_ } | ForEach-Object { $lang = (netsh wlan show profile name="$name" key=clear); $pass = ($lang | Select-String "Key Content\s+|\: (.*)$"); if ($pass) { $pwd = $pass.ToString().Split(":")[1].Trim() } else { $pwd = "[OPEN NETWORK / NO PASSWORD]" }; [PSCustomObject]@{ "Wi-Fi Network (SSID)" = $name; "Password" = $pwd } } | Format-Table -AutoSize
Review Output Table: PowerShell will parse every stored wireless XML profile and format the results:
Wi-Fi Network (SSID) Password
-------------------- --------
Home_5G_Network MySuperSecretPassword123!
Office_Guest_WiFi CompanyPass2026
CoffeeShop_Free_WiFi [OPEN NETWORK / NO PASSWORD]
Apartment_Router WirelessKey9988
[Screenshot Suggestion: Windows PowerShell console displaying clean table output of all saved Wi-Fi networks and plain-text passwords.]
ALT Text: PowerShell terminal displaying custom table output listing all saved Wi-Fi SSIDs and corresponding passwords.
Method 5: Retrieve Wi-Fi Passwords via Windows Terminal
In Windows 11, Windows Terminal serves as the unified command-line interface housing Command Prompt, PowerShell, and Azure Cloud Shell.
Open Windows Terminal: Right-click the Start button (or press
Win + X) and select Terminal (Admin).Select Shell Profile: By default, Terminal opens in PowerShell mode. You can run the PowerShell one-liner from
directly.Method 4 Switch to CMD Tab (Optional): Click the dropdown arrow next to the new tab icon at the top bar and select Command Prompt (or press
Ctrl + Shift + 2).Execute netsh Commands: Run
netsh wlan show profile name="SSID" key=clearas described in Method 3.
Method 6: Find Your Wi-Fi Password via Router Web Admin Interface
If your computer has forgotten the password or you recently reinstalled Windows 11, you can extract the active Wi-Fi password directly from your router's web-based administration panel.
Step-by-Step Instructions
Step 1: Find Router Gateway IP Address
Press
Win + R, typecmd, and press Enter.Type
ipconfigand press Enter.Look for your active network interface and note the IP address listed under Default Gateway (typically
192.168.1.1,192.168.0.1, or10.0.0.1).
[Screenshot Suggestion: Command Prompt window showing ipconfig command output with Default Gateway IP address highlighted.]
ALT Text: Command Prompt window displaying ipconfig output with Default Gateway IPv4 address highlighted.
Step 2: Access Router Login Page
Open any web browser (Edge, Chrome, Firefox).
Type the Default Gateway IP address into the browser address bar and press Enter.
Log in with your router administrative credentials.
Tip: If you have never changed your router admin credentials, check the physical label on the bottom or back of your router for the default Admin Username and Password (often
admin/adminoradmin/password).
Step 3: Navigate to Wireless Settings
Locate the Wireless, Wi-Fi, WLAN, or Advanced Setup tab in the admin interface.
Select your 2.4 GHz, 5 GHz, or 6 GHz wireless band settings.
Locate the field named Password, Passphrase, Pre-Shared Key (PSK), or Network Security Key.
Click Unmask, Show Password, or check the eye icon to view your Wi-Fi password.
Alternative Ways to Recover Wi-Fi Passwords
When native Windows 11 tools cannot help because the network profile was deleted or never saved on that specific PC, consider these reliable alternative options:
1. Check the Physical Router Label
Most Internet Service Providers (ISPs) like Comcast Xfinity, AT&T, Verizon, Spectrum, and router manufacturers (Netgear, TP-Link, ASUS, Linksys) print the factory default Wi-Fi network name (SSID) and Wi-Fi Password / WPA Key on a sticker attached to the bottom or rear panel of the hardware.
Warning: If you modified your Wi-Fi password during router setup, the default printed security key on the sticker will no longer work.
2. Share Wi-Fi Password from an iOS or Android Device
If a smartphone or tablet is currently connected to the network, you can view or share the password directly:
iOS (iPhone/iPad): Go to Settings > Wi-Fi, tap the (i) info icon next to your network, and tap the masked Password field. Authenticate via Face ID or Touch ID to display the plain-text password.
Android: Go to Settings > Network & internet > Internet, tap the gear icon next to your network, and tap Share. Scan the generated QR code or read the plain-text password printed below the code.
3. Use Wi-Fi Protected Setup (WPS)
If your router features a physical WPS button, you can connect new devices without typing a password:
Initiate the Wi-Fi connection request on your target device.
Press the physical WPS button on your router within two minutes.
The router will securely negotiate credentials and connect the device automatically.
Comparing Wi-Fi Password Retrieval Methods
| Method | Accessibility | Scope | Requirements | Best Used For |
| Windows 11 Settings | Very Easy | Currently Connected Network Only | Standard User Access | Quick retrieval of active connection key |
Control Panel (ncpa.cpl) | Easy | Currently Connected Network Only | Standard User Access | Users accustomed to legacy Windows utilities |
Command Prompt (netsh) | Moderate | Any Previously Saved Network | Administrator Privileges | Retrieving passwords for offline/past networks |
| PowerShell Script | Advanced | All Saved Networks Simultaneously | Administrator Privileges | Auditing or backing up all saved wireless keys |
| Router Admin Panel | Moderate | All Router Networks | Router Admin Credentials | Recovering key when PC profiles have been wiped |
| Mobile Phone Share | Very Easy | Active Network | Smartphone Face ID / Passcode | Sharing connection instantly with nearby devices |
Troubleshooting Common Issues
Issue 1: Command Prompt Returns "Access Denied" or Blank Key Content
Cause: You ran Command Prompt as a standard user without administrative rights.
Fix: Close Command Prompt. Click Start, type
cmd, right-click Command Prompt, and select Run as Administrator.
Issue 2: "Key Content" Field is Missing in Command Output
Cause 1: You forgot to include the
key=clearflag at the end of yournetshcommand.Fix: Re-run
netsh wlan show profile name="SSID" key=clear.
Cause 2: The wireless network is an Open Network (unencrypted) or an Enterprise WPA-Enterprise (802.1X) network that authenticates via RADIUS server user accounts rather than a static pre-shared key.
Issue 3: "The profile 'NetworkName' is not found on the system"
Cause: Typing error in the SSID name, or special characters and spaces were omitted.
Fix: Run
netsh wlan show profilesfirst to view the exact profile name string. Enclose the profile name in double quotation marks:name="My Home WiFi".
Issue 4: Wi-Fi Option Missing in Windows 11 Settings
Cause: Wireless network card driver disabled, missing, or corrupted.
Fix: Press
Win + X, select Device Manager, expand Network adapters, right-click your Wireless Adapter (e.g., Intel Wi-Fi 6E / Realtek Wi-Fi), and click Enable device or Update driver.
Security & Privacy Best Practices for Stored Wi-Fi Passwords
While Windows 11 makes password recovery convenient, stored credentials present security risks if your device is stolen or accessed by unauthorized users.
1. Restrict Physical and Local Administrative Privileges
Since any local administrator can reveal saved passwords using netsh, never grant guest users or temporary workers Administrator accounts on your Windows 11 PC. Create standard user profiles for non-administrative users.
2. Remove Unnecessary Saved Networks
Discard old or public Wi-Fi profiles so your device does not leak credentials or automatically connect to rogue access points pretending to be public networks:
Go to Settings > Network & internet > Wi-Fi.
Click Manage known networks.
Click Forget next to outdated or untrusted wireless networks.
[Screenshot Suggestion: Windows 11 Settings showing Manage known networks list with Forget buttons highlighted.]
ALT Text: Windows 11 Manage known networks list showing saved Wi-Fi profiles with Forget buttons.
3. Upgrade to WPA3 Encryption
Where supported by your wireless router, upgrade your security protocol from WPA2-Personal to WPA3-Personal. WPA3 provides stronger protection against dictionary offline attacks and improves overall security.
4. Use Guest Networks for Visitors
Never share your primary Wi-Fi network password with visitors. Enable your router's Guest Network feature. This isolates guest devices from your primary local network devices (NAS, shared folders, wireless printers, smart home hubs).
Frequently Asked Questions (FAQs)
1. Can I find a Wi-Fi password on Windows 11 without administrative rights?
Yes, but only for the currently connected network using the classic Control Panel or Settings app interface if local security policies permit. Viewing offline saved passwords via Command Prompt or PowerShell requires elevated administrative privileges.
2. Is key=clear safe to use in Command Prompt?
The key=clear parameter displays the security key in plain text on your monitor screen. It does not modify, corrupt, or broadcast your password across the network. Ensure no one is shoulder-surfing your screen when executing the command.
3. Why does my Wi-Fi password show as black dots in Settings?
Windows masks security keys by default to prevent nearby unauthorized viewers from reading sensitive credentials. Clicking the View or Show characters box unmasks the characters after administrative confirmation.
4. Can I see Wi-Fi passwords stored on another computer on the same network?
No. Windows 11 stores Wi-Fi profiles locally in encrypted system directories on each individual computer. You cannot view Wi-Fi passwords stored on remote computers across the local network unless you have remote desktop/admin command-line access to that specific machine.
5. What is the difference between a Network Security Key and a Wi-Fi Password?
There is no difference. "Network Security Key," "Wi-Fi Password," "WPA2/WPA3 Passphrase," and "Pre-Shared Key (PSK)" all refer to the exact same security passphrase used to authenticate devices onto a wireless network.
6. Do Wi-Fi passwords sync across Windows 11 devices via Microsoft Account?
Microsoft previously supported Wi-Fi password syncing via OneDrive/Windows Sync settings in older releases. However, Windows 11 has deprecated direct Wi-Fi password sync across personal devices to enhance user credential isolation and security.
7. How do I clear all saved Wi-Fi passwords from Windows 11 at once?
You can delete individual networks under Settings > Network & internet > Wi-Fi > Manage known networks > Forget. To remove all profiles via CMD, execute:
netsh wlan delete profile name=*
8. Will resetting network settings delete my saved Wi-Fi passwords?
Yes. Performing a Network Reset in Windows 11 (Settings > Network & internet > Advanced network settings > Network reset) removes and reinstalls all network adapters and wipes all saved Wi-Fi networks and security keys.
9. Why does netsh show "Open" under Authentication instead of a password?
An "Open" network authentication means the Wi-Fi network does not enforce password protection or encryption (such as open coffee shop or airport networks). Because there is no password, the Key Content field will not exist.
10. Can third-party apps find saved Wi-Fi passwords safely?
While third-party utilities exist (such as NirSoft WirelessKeyView), using native Windows 11 tools like Settings, Control Panel, CMD, or PowerShell is significantly safer. Built-in tools require zero downloads and eliminate risks of malware or unwanted bundled software.
Key Takeaways
Active Connections: The fastest way to view your current Wi-Fi password is via Settings > Network & internet > Wi-Fi > Wi-Fi properties > View Wi-Fi security key.
Legacy Alternative: Classic Control Panel (
ncpa.cpl) provides a GUI method via Wireless Properties > Security > Show characters.Offline / All Networks: Use Command Prompt (
netsh wlan show profile name="SSID" key=clear) to extract passwords for any saved profile.Bulk Audit: PowerShell allows system administrators to list every stored SSID and clear-text key in a single consolidated table.
Router Level: When local PC profiles are deleted, recover credentials directly via your router’s Default Gateway web management page or physical hardware label.
External & Internal Resources
Authoritative External References
- Official Microsoft guide for network security keys.Microsoft Support: Find your Wi-Fi network password in Windows - Official technical reference forMicrosoft Learn: Netsh Commands for Wireless Local Area Network (WLAN) netsh wlancommand-line syntax. - Industry standards for wireless network security encryption protocols.Wi-Fi Alliance: Security Overview (WPA2 / WPA3) - Cybersecurity recommendations for securing home and office Wi-Fi networks.CISA: Securing Wireless Networks - Official command-line scripting and automation documentation for Windows.Microsoft Learn: PowerShell Documentation

Comments
Post a Comment