’x

How to Check WiFi Password in Windows 10 and 11

Five proven methods to find any saved WiFi password on your Windows PC — from the current network to passwords for networks you connected to months ago.

G-Tech Blog  |  2026  |  12 min read

Forgot your WiFi password? You are not alone — it happens to everyone. Whether you are trying to connect a new phone, share your password with a guest, or simply can't remember what you set it to years ago, Windows quietly saves every WiFi password it has ever connected to. This guide shows you every method available to recover those saved passwords on Windows 10 and Windows 11, from the simplest point-and-click approach to the most powerful command-line techniques.

Before You Start

Before trying any of the methods below, there are two things you need to confirm. First, you need a Windows user account with administrator privileges. Standard user accounts can't view saved network security keys because Windows treats them as sensitive credential data. If you are on a work or school computer managed by IT, some of these methods may be restricted by group policy — in that case, contact your IT department.

Second, understand that Windows can only show you the password for a network it has previously connected to and saved. If you never connected your computer to that network, the password will not be stored on it. In that case, you will need to check your router's admin page instead — we cover that in Method 6.

Quick check: To confirm you have administrator access, open the Start menu, search for Command Prompt, right-click it, and see if Run as administrator appears as an option. If it does, your account has the necessary permissions.

What you need

  • Windows 10 or Windows 11 PC
  • Administrator account access
  • The PC must have previously connected to the network

What these methods find

  • WPA2, WPA3, and WEP passwords
  • Passwords for currently connected networks
  • Passwords for all previously saved networks

Method 1: Windows Settings (Easiest — Current Network)

This is the simplest method and works perfectly if you are currently connected to the WiFi network whose password you want to find. Windows 11 slightly reorganized the Settings menu compared to Windows 10, so we cover both versions below.

Windows 11 — Step by Step

  1. Click the Start button and open Settings (or press Windows + I).
  2. Click Network & internet in the left sidebar.
  3. Click Wi-Fi.
  4. Click the name of your currently connected network (it will show "Connected" beneath it).
  5. Scroll down and click View Wi-Fi security key or look for Wireless network properties.
  6. A dialog box opens. Click the Security tab.
  7. Check the box next to Show characters.
  8. The Network security key field will now display your password in plain text.

Windows 10 — Step by Step

  1. Press Windows + I to open Settings.
  2. Go to Network & Internet.
  3. Click Wi-Fi in the left panel.
  4. Click Change adapter options (or Advanced network settings).
  5. Right-click your WiFi adapter and select Status.
  6. Click Wireless Properties.
  7. Go to the Security tab.
  8. Check Show characters — your password appears in the Network security key field.
On both Windows 10 and 11, you can also reach the WiFi status dialog quickly by clicking the WiFi icon in the system tray (bottom-right), then right-clicking your connected network name and choosing Properties or Open Network & Internet settings.

Method 2: Control Panel (Current Network)

The Control Panel route has been available since Windows 7 and still works on both Windows 10 and 11. Some users prefer it because it is a more direct path with fewer clicks once you know the way. It only shows the password for the network you are currently connected to.

Step by Step

  1. Press Windows + R to open the Run dialog.
  2. Type control and press Enter to open the Control Panel.
  3. Click Network and Internet (if you are in Category view) then Network and Sharing Center. If you are in Icon view, click Network and Sharing Center directly.
  4. In the left panel, click Change adapter settings.
  5. You'll see your network adapters listed. Right-click on your Wi-Fi adapter.
  6. Select Status from the context menu.
  7. In the Wi-Fi Status dialog, click Wireless Properties.
  8. Click the Security tab in the Wireless Network Properties window.
  9. Check the box labelled Show characters.
  10. Your WiFi password is now visible in the Network security key field.

You can also reach the Network and Sharing Center faster by typing ncpa.cpl in the Run dialog (Windows + R), which takes you directly to the adapter list, skipping the Control Panel home screen entirely.

Method 3: Command Prompt (Any Saved Network)

This is the most powerful method for most users because it lets you retrieve passwords for any network your computer has ever connected to, not just the current one. If you need the password for your office WiFi, your parents' home network, or a hotel network you connected to last year — and your laptop is in the list of saved profiles — you can recover it here.

The tool is called netsh (Network Shell), a built-in Windows command-line utility for managing network configurations. You do not need to install anything extra.

Step 1 — Open Command Prompt as Administrator

This step is critical. netsh will not display passwords without administrator privileges.

  1. Press Windows + S (or click the search bar).
  2. Type cmd or Command Prompt.
  3. Right-click Command Prompt in the results.
  4. Select Run as administrator.
  5. Click Yes if the User Account Control (UAC) prompt appears.

Step 2 — List All Saved WiFi Profiles

Type the following command and press Enter:

netsh wlan show profile

Windows will display a list of every WiFi network your computer has saved. The output looks like this:

User profiles
-------------
    All User Profile     : HomeNetwork
    All User Profile     : OfficeWiFi
    All User Profile     : CoffeeShop_Guest
    All User Profile     : Mum_sHome

Note down the exact name of the network whose password you want — spelling and capitalization must match exactly.

Step 3 — Reveal the Password for a Specific Network

Replace NETWORK_NAME with the exact network name from the list above:

netsh wlan show profile "NETWORK_NAME" key=clear

For example, to see the password for a network called "HomeNetwork":

netsh wlan show profile "HomeNetwork" key=clear

Look through the output for the Security settings section. Your password appears next to Key Content:

Security settings
-----------------
    Authentication         : WPA2-Personal
    Cipher                 : CCMP
    Security key           : Present
    Key Content            : MySecretPassword123
If the network name contains special characters or spaces, make sure it is wrapped in double quotes in the command. For example: netsh wlan show profile "My Home WiFi 5G" key=clear

Method 4: PowerShell — Export All Passwords at Once

If you need to retrieve passwords for multiple networks at once — for example, to document your home or office network credentials — PowerShell lets you loop through all saved profiles and display every password in a single command. This is the fastest way to get a complete list.

Open PowerShell as Administrator

  1. Press Windows + S and search for PowerShell.
  2. Right-click Windows PowerShell and select Run as administrator.

Export all saved WiFi passwords

Paste the following command into PowerShell and press Enter:

(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE=$name;PASSWORD=$pass }} | Format-Table -AutoSize

This produces a clean table showing every saved network name alongside its password:

PROFILE              PASSWORD
-------              --------
HomeNetwork          MySecretPassword123
OfficeWiFi           C0mpanyW1F1Pass
CoffeeShop_Guest     freewifi2024

Save the output to a text file

To save the list to a file on your Desktop for safekeeping, add | Out-File at the end:

(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE=$name;PASSWORD=$pass }} | Format-Table -AutoSize | Out-File "$env:USERPROFILE\Desktop\wifi-passwords.txt"

Open wifi-passwords.txt on your Desktop to view the full list.

Keep any exported password files secure. Delete them after use or store them in a password manager. A plain text file containing all your WiFi passwords on your Desktop is a security risk if someone else has access to your computer.

Method 5: Windows Credential Manager

Windows Credential Manager is a built-in vault that stores passwords, certificates, and other credentials for websites, applications, and networks. While WiFi passwords for WPA2 networks are more commonly stored in the WLAN profiles (accessed via netsh), some network types and older Windows configurations store credentials here. It's worth checking if the other methods do not show what you need.

Step by Step

  1. Press Windows + R, type control, and press Enter.
  2. In Control Panel, search for Credential Manager or navigate to User Accounts > Credential Manager.
  3. Click Windows Credentials (the second tab).
  4. Look through the list for entries that start with WLAN or contain a network name you recognize.
  5. Click the arrow to expand an entry, then click Show next to the password field.
  6. Enter your Windows account password when prompted to confirm your identity.

Credential Manager is particularly useful for finding passwords for enterprise WiFi networks (WPA2-Enterprise / 802.1X), which authenticate using a username and password rather than a pre-shared key. These credentials are stored in Credential Manager rather than the WLAN profiles, so netsh will not show them.

Method 6: Check Your Router's Admin Page

If none of the Windows methods work — perhaps because the computer was never connected to that network, or you need the password for a device that has no display — you can always find the WiFi password directly on your router. This works for any device on your network, not just Windows PCs, and always shows the current password regardless of whether it has ever been saved on a computer.

Step 1 — Find your router's IP address

Open Command Prompt and type:

ipconfig

Look for the Default Gateway entry under your WiFi adapter. It will typically be something like 192.168.1.1 or 192.168.0.1.

Step 2 — Log in to the router admin panel

  1. Open any web browser on a device that is connected to the network.
  2. Type the Default Gateway IP address into the address bar (e.g., 192.168.1.1) and press Enter.
  3. A login page will appear. Common default credentials are admin / admin or admin / password. Check the sticker on the bottom of your router for the exact default credentials if you have not changed them.
  4. Once logged in, look for a section called Wireless, Wi-Fi Settings, or Security.
  5. Your WiFi password (called the Passphrase, Pre-Shared Key, or Network Key) will be displayed, sometimes hidden with dots. Click the eye icon or a Show button to reveal it.
Router admin interfaces vary by brand. For Netgear routers look under Wireless Settings. For TP-Link look under Wireless > Wireless Security. For Asus routers look under Wireless > General. The password is always labelled as WPA Pre-Shared Key or similar.

Windows 10 vs Windows 11 — Key Differences

The underlying methods for finding WiFi passwords are the same on both Windows 10 and 11 — the WLAN profiles, netsh, and Credential Manager all work identically. The differences are purely in the Settings app navigation, which Microsoft redesigned significantly in Windows 11.

Feature Windows 10 Windows 11
Settings path to WiFi properties Settings —  Network & Internet —  Wi-Fi —  Network name Settings —  Network & internet —  Wi-Fi —  Network name —  Properties
Control Panel path Network and Sharing Center —  Change adapter settings Same — Control Panel still exists and works identically
Command Prompt / netsh Identical — same commands work on both Identical — same commands work on both
PowerShell method Identical Identical
Quick Settings WiFi panel Basic — click WiFi icon in taskbar Redesigned — includes a separate arrow (—~S) to manage known networks
Forget a network Settings —  Wi-Fi —  Manage known networks Settings —  Network & internet —  Wi-Fi —  Manage known networks

How to Share Your WiFi Password from Windows

Once you have found your WiFi password, you might want to share it easily with someone else without reading out a long string of characters. Here are the most convenient ways to share it.

Share verbally or by typing

The simplest method — read the password from any of the methods above and tell the other person, or type it into their device. Works for any situation but is error-prone with complex passwords.

Generate a QR code

Use a free website like qifi.org or a QR code generator app to create a WiFi QR code from your network name and password. The other person scans it with their phone camera and connects instantly — no typing required.

Windows Mobile Hotspot (share via hotspot)

If the other device can't connect to your main router, enable Windows Mobile Hotspot (Settings —  Network & internet —  Mobile hotspot) and share your internet connection directly from your PC. The hotspot has its own password you can set easily.

Nearby Sharing

Windows 11 supports sharing your WiFi network credentials to nearby Windows devices through Nearby Sharing. Enable it in Settings —  System —  Nearby Sharing, then right-click your network in the WiFi settings and choose Share.

How to Change Your WiFi Password

If you found your current password and want to change it to something stronger, or if you suspect it has been shared too widely, you need to change it on your router — not in Windows. Windows stores the password your router uses; it can't change the router's password itself.

Steps to change your WiFi password

  1. Log in to your router admin panel (follow the steps in Method 6 above to find the IP address and log in).
  2. Navigate to the Wireless or Wi-Fi Security section.
  3. Find the WPA Pre-Shared Key, Passphrase, or Password field.
  4. Delete the current password and type your new one.
  5. Click Save or Apply.
  6. Your router will restart the WiFi. All connected devices will be disconnected and will need to reconnect with the new password — including your Windows PC.
After changing your router password, Windows will try to reconnect using the old saved password and fail. You'll see a "Can't connect to this network" error. Click Forget on the network, then reconnect and enter the new password. Windows will save the new password automatically.

WiFi Password Security Tips

While you have your WiFi password in mind, it is a good time to review whether it meets modern security standards. A weak WiFi password is one of the most common entry points for unauthorized users on home and small business networks.

Troubleshooting Common Problems

"Show characters" checkbox is greyed out

This happens when you are logged in as a standard user, not an administrator. Switch to an administrator account or ask your system administrator. On work and school devices, IT policy may prevent showing saved passwords.

netsh shows the profile but no Key Content

You ran the command without administrator privileges. Close Command Prompt and reopen it using Run as administrator. The key=clear flag only works with elevated permissions.

"The system can't find the file specified" in netsh

The network name in your command does not match exactly. Run netsh wlan show profile first to see the exact saved name, then copy and paste it (including any spaces) into your command, wrapped in double quotes.

Can't connect to the network even after finding the password

The router's password may have been changed since your PC last connected. The password saved on Windows is from the last successful connection and may be out of date. Try the new password provided by whoever manages the router.

Network not in the saved profiles list

Windows only saves networks you explicitly connected to on this device. If you connected on a different computer or phone, the password will not be on this Windows PC. Use Method 6 (router admin page) instead.

Router admin page is not loading

Double-check the Default Gateway IP from ipconfig. If the page still does not load, try a different browser, clear your browser cache, or make sure you are connected to that router's network (not a mobile hotspot).

Frequently Asked Questions

Can I find the WiFi password without being an administrator?

No — Windows restricts access to saved network security keys to administrator accounts for security reasons. If you are on a standard account, you will need to ask an administrator on the same PC to look it up, or access the router admin page directly (which requires knowing the router's admin password instead).

Will these methods work if I am not currently connected to WiFi?

Methods 1 and 2 (Settings and Control Panel) require you to be currently connected to the network, because they show properties of the active connection. Methods 3 and 4 (Command Prompt and PowerShell using netsh) work regardless of whether you are currently connected — they read from saved profiles stored on your hard drive, so you can be on airplane mode or connected to a different network entirely.

Is it legal to view saved WiFi passwords on my own computer?

Yes — viewing passwords that are saved on your own device, for networks you have been authorized to connect to, is completely legal. These are your own saved credentials. Using these methods to access someone else's WiFi without their permission is a different matter entirely and is illegal in most jurisdictions.

Why does Windows save WiFi passwords?

Windows saves WiFi passwords as a convenience feature. When you connect to a network and check "Connect automatically," Windows stores the credentials so it can reconnect without asking you for the password every time. These stored credentials are called network profiles and are saved in Windows' WLAN profile store, encrypted using Windows Data Protection API (DPAPI) tied to your user account.

Can I see WiFi passwords on Windows without any software?

Yes — all the methods in this guide use built-in Windows tools only. No third-party software is required. The Settings app, Control Panel, Command Prompt, PowerShell, and Credential Manager are all included with every installation of Windows 10 and Windows 11.

What if I forgot both my WiFi password and my router admin password?

If you can't find the password using any Windows method and you also can't log in to your router admin page, your last resort is to factory reset your router. Most routers have a small reset button (usually a pin-hole on the back) that you hold for 10—15 seconds to restore factory defaults. After a reset, the router returns to its default SSID and password, which are printed on a sticker on the router itself. Note that a factory reset will also erase any custom settings you had configured.

Quick Method Comparison

Method Works for Requires admin? Difficulty
1. Windows Settings Currently connected network only Yes Easy
2. Control Panel Currently connected network only Yes Easy
3. Command Prompt (netsh) Any previously saved network Yes Easy
4. PowerShell All saved networks at once Yes Medium
5. Credential Manager Enterprise / 802.1X networks Yes Easy
6. Router Admin Page Any network (current password) Router admin login Medium

 Conclusion

Finding a saved WiFi password on Windows is straightforward once you know where to look. For the network you are currently connected to, the Settings or Control Panel method takes under a minute. For older saved networks, the Command Prompt netsh command is your best friend — it works on both Windows 10 and 11 and retrieves passwords for every network your PC has ever connected to. If all else fails, your router's admin page always has the current password, no matter what.

All six methods covered in this guide use built-in Windows tools — no downloads, no third-party software, and no technical expertise required. Once you have your password, consider storing it safely in a password manager so you never have to go looking for it again.