How to View Wi-Fi Password on Windows 10

Sometimes, you might need to recall the Wi-Fi password your computer connected to previously but can’t remember it. Fortunately, Windows 10 makes it easy to retrieve saved Wi-Fi passwords. Here’s a step-by-step guide to finding your saved Wi-Fi password on your computer.

Method 1: Viewing the Wi-Fi Password in Network Settings

  1. Open Control Panel. You can do this by typing "Control Panel" into the taskbar search.
  2. Go to Network and Internet, then select Network and Sharing Center.
  3. Find your active Wi-Fi connection and click on its name to open the network details.
  4. In the new window, select Wireless Properties.
  5. Go to the Security tab and check the box next to Show characters. Your Wi-Fi password will now be visible in the “Network security key” field.

Method 2: Viewing the Password Using Command Prompt

If you prefer using the Command Prompt, this method works well, especially if you want to see passwords for multiple Wi-Fi networks your computer has connected to in the past.

  1. Open Command Prompt as an administrator. To do this, type "cmd" in the search bar, right-click it, and select Run as administrator.
  2. Enter the following command:
    netsh wlan show profile name="your_network_name" key=clear

    Replace your_network_name with the name of the Wi-Fi network you’re looking for.

  3. In the command output, locate the Key Content section. This will display your Wi-Fi password.

Method 3: Using PowerShell to Display Wi-Fi Passwords

PowerShell offers a similar approach to retrieving saved Wi-Fi passwords, often preferred for its flexibility.

  1. Open PowerShell as an administrator by right-clicking the Start button and selecting Windows PowerShell (Admin).
  2. Type the following command:
    (netsh wlan show profile name="your_network_name" key=clear).keyContent

    Replace your_network_name with the desired Wi-Fi network name.

  3. After running the command, the output will display the password.