How to view your Wi-Fi password on your computer: all the working methods

Forgot your home Wi-Fi password, and the sticker on your router has worn off? Or need to connect a new device but haven't written down the password? Don't rush to reset your router—your computer already knows the password! If it's connected to the network at least once, the login credentials are saved in the system. In this article, we'll cover all of this. 5 proven methodsHow to find out the Wi-Fi password on a computer Windows 7, 10, or 11, including methods via the command line, the graphical interface, and even without administrator rights.

Important: All described methods only work for networks to which your PC is connected. I've already connected beforeIf you're trying to hack someone else's network, it's illegal and technically impossible without specialized equipment. We consider only legal recovery scenarios. own data.

Also keep in mind that on some corporate or public networks (such as those in cafes or hotels), passwords may be encrypted with certificates or dynamically generated—in these cases, standard methods won't work. However, the instructions below will work for 99% of home routers.

📊 What kind of router do you have?
TP-Link
ASUS
Xiaomi
D-Link
ZTE
Another

1. View the password through Network Settings (Windows 10/11)

The easiest way is to use the built-in network management menu. It doesn't require any command knowledge or additional software, but it does require administrator rights.

Instructions:

  • 🖱️ Open Start → Settings (gear icon) → Network and Internet.
  • 📡 In the section Wi-Fi click Managing known networks.
  • 🔍 Select the desired network from the list and click Properties.
  • 👁️ Scroll down to field Network password and press the button Show (you will be asked to enter your Windows account password).

If the button Show is inactive or the password field is empty, this means that:

  • 🔒 Your account does not have administrator rights.
  • 📵 Network connected via WPS or Enterprise authentication (for example, in offices).
  • 🖥️ The password is saved at the network card driver level (less often, usually on laptops with Intel Wi-Fi 6).

Make sure your PC is connected to the correct network|Check your administrator rights|Update your Wi-Fi adapter driver|Try another method from the article

-->

⚠️ Attention: IN Windows 11 The path to the network settings may vary depending on the build version. If you don't find the section Managing known networks, try entering the phrase in the system search view network connections.

2. Command Prompt: A Universal Method for All Windows Versions

This method works on Windows 7, 8, 10, and 11, does not require installation of additional programs and takes less than a minute. You will need to run Command line on behalf of the administrator.

Step-by-step instructions:

  1. Click Win + R, enter cmd, then Ctrl + Shift + Enter (this will open the console with admin rights).
  2. Enter the command to view all saved networks:
    netsh wlan show profiles

    Find your network name (SSID) in the list.

  3. Please enter the password for the specific network (replace NETWORK_NAME to its real name):
    netsh wlan show profile name="NETWORK_NAME" key=clear
  4. Find the line in the results Key content - this is your password.

Example command output (password highlighted):


Profile name: MyWiFi_5G

...

Security parameters

Authentication type: WPA2-Personal

Encryption type: CCMP

Key content: 12345678AbC

If you see a message instead of a password Key content is missing, this means that:

  • 🔌 Network connected via Ethernet, not Wi-Fi (check the physical connection).
  • 📛 The network profile is damaged (try deleting the network in the settings and connecting again).
  • 🛡️ Network management software is installed on the PC (for example, Intel PROSet or Killer Networking), which blocks standard commands.

3. Using PowerShell for Advanced Users

PowerShell — a more powerful tool than the command line and also allows you to extract Wi-Fi passwords. This method is useful if you need to export all saved passwords to a file or automate the process.

Instructions:

  1. Launch PowerShell as administrator (Win + X → Windows PowerShell (Administrator)).
  2. Enter the command to display all networks and their passwords:
    (netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key contents\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); [PSCustomObject]@{PROFILE_NAME=$name;PASSWORD=$pass}} | Format-Table -AutoSize

The result will be in the form of a table:

Network name (PROFILE_NAME)Password
MyWiFi_2.4Gqwerty1234
Office_NetAbCdEfGh1!
Guest_WiFiwelcome2026

Advantages of the method:

  • 📊 Displays all networks and passwords at once (convenient for analysis).
  • 📄 You can redirect the output to a file: add > wifi_passwords.txt to the end of the command.
  • 🔄 Works even if the Windows graphical interface is damaged.
⚠️ Attention: Do not save files with passwords to cloud storage (OneDrive, Google Drive) or send it by email in clear text. This may lead to data leakage.

4. View the password through the Network and Sharing Center (Windows 7/8/10)

The good old Network and Sharing Center still works in newer versions of Windows, albeit hidden deeper. This method is suitable for those accustomed to the classic interface.

How to open:

  • 🖱️ Right-click on the Wi-Fi icon in the tray (bottom right of the taskbar).
  • 📋 Choose Open Network and Internet settingsNetwork and Sharing Center.
  • 🔗 Click on your network name next to Connections.
  • 🛠️ In the window that opens, click Wireless network properties → tab Security.
  • 👁️ Check the box Show entered charactersto see the password.

If the tab Security is missing or the password field is empty, this may mean:

  • 🔐 The network uses WPA3-Enterprise or 802.1X (corporate standards).
  • 📡 Connection is made via Wi-Fi Direct or Hotspot 2.0.
  • 🖥️ Third-party Wi-Fi management utilities are installed on the PC (for example, from Dell or HP).
What should I do if there is no "Security" tab?

In some cases (especially on laptops with proprietary utilities), the "Security" tab may be missing. Try:

1. Delete the network in the settings and reconnect.

2. Update the Wi-Fi adapter driver via Device Manager.

3. Temporarily disable your firewall or antivirus (they sometimes block access to network settings).

5. Third-party programs: when standard methods don’t work

If Windows' built-in tools don't reveal your password, specialized utilities can help. They're convenient because:

  • 🔍 Shows passwords even for hidden networks (Hidden SSID).
  • 📥 Export data to .txt or .csv.
  • 🛡️ Work without administrator rights (some).

Top 3 proven programs:

ProgramPeculiaritiesLink (official)
WirelessKeyView (NirSoft)Portable, no installation required, shows all saved passwordsnirsoft.net
WiFi Password RevealerSimple interface, export to file, support WPA3magicaljellybean.com
NetPassShows passwords for Ethernet And PPPoE besides Wi-Finirsoft.net

How to use WirelessKeyView:

  1. Download the archive with the program and unzip it.
  2. Run the file WirelessKeyView.exe (admin rights are not required).
  3. Find your network in the table - the password will be in the column Key (Ascii).
  4. Export data via if necessary File → Save All Items.
⚠️ Attention: Download programs only from the developers' official websites! Many "cracked" versions of password viewing utilities contain viruses or spyware.

6. Alternative methods: if nothing helps

If none of the above methods worked, try these options:

Resetting the router to factory settings

  • 🔄 Press and hold the button Reset on the router for 10-15 seconds (usually it is recessed and requires a paper clip).
  • 📋 The default password will be indicated on the device sticker (for example, admin or 12345678).
  • ⚠️ Minus: All router settings will be reset, including the network name, password, and connection parameters to the provider.

View your password on another device

  • 📱 On Android: go to Settings → Wi-Fi → Network name → Share password (fingerprint or PIN confirmation required).
  • 🍎 On iPhone: open Settings → Wi-Fi, click on i next to the network and hold your finger on the field Passwordto copy it.
  • 🖥️ On MacOS: open Bunch of keys, find the network name and check the box Show password.

Contacting your provider

If the router was provided by an Internet provider (for example, Rostelecom, Beeline, MTS), the standard password can be:

  • 📌 Specified in the contract or acceptance certificate.
  • 📧 Sent via SMS upon activation.
  • 🌐 Available in your personal account on the provider’s website (section My devices or Wi-Fi settings).

Common mistakes and how to avoid them

When trying to find a Wi-Fi password, users often encounter common problems. Here's how to solve them:

ProblemCauseSolution
Team netsh does not show the passwordThe network is connected via Ethernet, not Wi-FiPlease check the physical connection or use arp -a to search for devices on the network
No administrator rightsLimited rights accountTemporarily get admin rights or use WirelessKeyView (works without rights)
The password is displayed as dots but is not copied.Windows Security RestrictionManually retype the password or take a screenshot
The network list is emptyThe Wi-Fi adapter is disabled or faulty.Check the driver in Device Manager or restart your PC

Another common mistake is trying to hack someone else's network using programs like Aircrack-ng or WiresharkWe remind you:

  • 🚫 This is illegally and is punishable under Article 272 of the Criminal Code of the Russian Federation (“Unauthorized access to computer information”).
  • 🛡️ Modern routers with WPA3 are virtually invulnerable to such attacks.
  • 📡 Even if you manage to connect, the speed will be limited or the connection will be blocked.

FAQ: Answers to frequently asked questions

Is it possible to find out the Wi-Fi password without administrator rights?

Yes, but with restrictions:

  • 🔹 Through WirelessKeyView (works without admin rights, but may not show all networks).
  • 🔹 On Windows 7 sometimes the method works through Network and Sharing Center.
  • 🔹 If you are currently connected to the network, the password can be retrieved from the driver cache (requires technical skills).

However, for most methods (command line, PowerShell), administrator rights are required.

Why are asterisks or a blank field displayed in the command line instead of a password?

This happens for several reasons:

  1. The network is connected via WPS (click the button WPS on the router for a new connection).
  2. The password is saved in a third-party program (for example, Intel PROSet or Dell Wireless Utility).
  3. The network profile is corrupted (delete the network in the settings and reconnect).
  4. There is a VPN or firewall installed on the PC that blocks access to network settings.

Try updating your Wi-Fi adapter driver or use WirelessKeyView.

How to find out the Wi-Fi password on a Linux computer (Ubuntu, Mint)?

In Linux, passwords are stored in a configuration file. /etc/NetworkManager/system-connections/Instructions:

  1. Open Terminal (Ctrl + Alt + T).
  2. Go to the configuration folder:
    cd /etc/NetworkManager/system-connections/
  3. Find the file with the name of your network (eg. MyWiFi.nmconnection) and open it:
    sudo cat MyWiFi.nmconnection | grep psk=
  4. The password will be after psk= (may be encrypted - use sudo grep psk= * to view all networks).

For the graphical interface, use Network Manager or utility nmcli:

nmcli -s -g 802-11-wireless-security.psk connection show NETWORK_NAME
Is it possible to recover a Wi-Fi password if the computer is not connected to the network?

Yes, but only if:

  • 🔹 Computer previously connected to this network (the password is saved in the system).
  • 🔹 You use methods via the command line, PowerShell or third-party utilities.

If the PC has never been connected to the network, the password can only be recovered:

  • 📋 Via a sticker on the router (standard password).
  • 🔄 By resetting the router to factory settings.
  • 📞 By contacting your provider (if the router is theirs).
Is it safe to store Wi-Fi passwords in a text file?

No, it is extremely unsafeHere's why:

  • 🔓 Text files are not encrypted and can be read by any software or virus.
  • 📤 When synchronizing with clouds (OneDrive, Google Drive) the file may become available to third parties.
  • 🛡️ Best alternatives:
    • 🔐 Password managers (KeePass, Bitwarden, 1Password).
    • 📝 Write down your password on paper and keep it in a safe place.
    • 📱 Save your password in a secure note on your phone (with fingerprint lock).

If you still need to save the password in a file:

  • 🔐 Archive it with a password (7-Zip or WinRAR).
  • 📁 Store on an external drive (flash drive, external HDD) that is not connected to the Internet.