How to Find Your Wi-Fi Password on Windows 11: A Complete Guide

The situation where you need to connect a new device to an existing network, but the access key is forgotten or lost, is familiar to many users. In the operating system Windows 11 The process of restoring this information has become more intuitive, but still requires knowledge of certain menu paths. If you are the administrator of the current connection, the system stores the necessary data in a secure format, ready to be displayed at the owner's request.

There are several effective methods for retrieving a saved key, from the graphical settings interface to advanced console commands. The choice of a specific method depends on your preferences and whether you are currently connected to the internet. We'll cover the most current options, which are guaranteed to work on the latest operating system builds.

View your password using the new Windows 11 Settings

In the latest updates Windows 11 Microsoft has significantly simplified wireless connection management by adding the ability to view security keys directly in the settings menu. This is the simplest and most secure method, requiring no command prompt or third-party software. You'll only need to confirm your system administrator rights.

To get started, open the Start menu and go to the section ParametersIn the left column, select the "Network & Internet" category, then click "Wi-Fi." This displays a list of available networks and the current connection status. If you're already connected, the system will display the properties of the active network.

Find the "Manage known networks" button or go directly to the current connection's properties. In the window that opens, scroll down to "View Wi-Fi password." Next to this field, you'll see an eye or "Copy" button. After clicking, the system will ask for confirmation. PIN code or biometrics.

⚠️ Note: The view password feature in Settings may not be available if you are using a Microsoft account without local administrator rights or if your device is managed by an enterprise security policy.

After successful authentication, the hidden characters will be replaced with readable text. This allows you to quickly copy the character combination for entry on another device. This approach eliminates the need for complex scripts.

📊 How do you prefer to manage your network settings?
Through the graphical interface
Via the command line
Through third-party programs
Via PowerShell

Using Command Prompt (CMD) to Recover the Key

For experienced users who prefer classic methods or are faced with the limitations of the graphical interface, the command line is ideal. netsh (Network Shell) is a powerful network configuration tool built into Windows by default. It allows you to manage connection profiles, including displaying saved keys.

Run the command prompt as administrator. This is critical, as without elevated privileges, the system will reject the request for display information. Enter cmd in the search, right-click and select the appropriate menu item.

The first step is to find out the exact network profile name, which may differ from the SSID. Enter the command:

netsh wlan show profiles

The system will display a list of all saved profiles. Find the desired network in the list and copy its name. Next, use the following syntax to display the profile details, adding the parameter key=clear, which forces the key to be shown in clear text:

netsh wlan show profile name="Network_Name" key=clear

In the "Security Settings" information block, find the "Key Contents" line. This is where the password you're looking for will be located. This method works even if the network is not currently active, as long as the profile is saved to your computer's memory.

☑️ Check before entering commands

Completed: 0 / 4

Alternative method via PowerShell

PowerShell is a more modern scripting environment that also has access to network configurations. While the syntax may seem more complex than CMD, this tool offers more flexible options for filtering output. This method is useful if standard commands netsh for some reason they don't work correctly.

Open PowerShell with administrator privileges. Enter the following command to retrieve the profile:

netsh wlan show profile name="Your_Network_Name" key=clear

As you can see, the query syntax is similar to the command line, as PowerShell often delegates such queries to system APIs. However, you can use PowerShell's ability to automatically copy the result to the clipboard by adding piping:

(netsh wlan show profile name="Network_Name" key=clear) | Select-String"Key Contents"

This will only output the password string, making it easy to read. Make sure the network name is enclosed in quotation marks, especially if it contains spaces. A misspelling of the name will result in a profile not found message.

What to do if the profile is not found?

If the system reports that the profile is not found, check the exact network name in the profile list. Sometimes numbers or symbols are automatically appended to the name, which aren't visible in the standard Wi-Fi network list. The profile may also have been deleted when clearing temporary files or resetting the network.

Viewing your password through the Control Panel (Classic Method)

Despite the active implementation of the new "Options" menu, the classic Control Panel It's still present in Windows 11 and contains all the necessary functions for network management. This interface is familiar to users of older OS versions and sometimes works more reliably when displaying adapter properties.

Press the key combination Win + R, enter the command ncpa.cpl and press Enter. The Network Connections window will open. Find your Wireless Network adapter, right-click it, and select Status. In the window that opens, click the Wireless Network Properties button.

Go to the "Security" tab. Here you'll see the "Network Security Key" field. By default, the characters are hidden behind asterisks. Check the "Show entered characters" box to make the password visible. This method only works for the active network you're currently connected to.

Method Admin rights required Works for inactive networks Complexity
Windows 11 Settings Yes (PIN/Biometrics) Only famous ones Low
Command Prompt (CMD) Yes Yes Average
PowerShell Yes Yes High
Control Panel No (for active) No Low

Restoring access via a router

If none of the software methods on the computer work (for example, due to corrupted system files or insufficient privileges), physical access to the router remains. The Wi-Fi password is stored in the router's configuration and can be viewed through the device's web interface. To do this, connect to the router via cable or Wi-Fi (if available).

Open your browser and enter the gateway IP address (usually 192.168.0.1 or 192.168.1.1). After entering the administrator login and password (often found on a sticker on the bottom of the device), go to the Wireless or Wi-Fi Settings section. There, the security key is displayed in plain text or can be changed to a new one.

This method also allows you to reset your password if you want to set a new, more complex key. The changes will take effect immediately, and all devices will need to be reconnected. This is a good reason to update your home network security.

⚠️ Note: Router interfaces vary significantly across different manufacturers (Asus, TP-Link, Keenetic, MikroTik). Menu locations may vary depending on the firmware version. If you're unsure of your settings, it's best not to change anything other than the Wi-Fi password.

Possible problems and their solutions

During the password recovery process, users may encounter various errors. The most common issue is the "Access Denied" message when attempting to use the command prompt without administrator privileges. Always ensure the console is running as the root user.

Another common issue is the inability to see the "Show characters" field in the network properties. This happens if you're not the profile owner or if the network is a guest network with limited access. In such cases, the only solution is to log in to the router or reset the network.

It's also worth considering that some corporate security policies may block password visibility even for administrators. In this case, please contact your organization's system administrator.

Is it possible to find out the Wi-Fi password if the laptop is not currently connected to the network?

Yes, this is possible if the network profile was previously saved on the computer. Use the command line with the command netsh wlan show profile name="Name" key=clearThe system stores profiles even for networks you are not currently connected to until you manually delete them.

What should I do if I forgot my router administrator password?

If you haven't changed the factory settings, try the default combinations (admin/admin) listed on the device's sticker. If the password has been changed and lost, you'll need to perform a hard reset of the router using the button on the device, then set up the network again.

Is it safe to save passwords in Windows?

Saving passwords is convenient, but it reduces security if someone else gains access to your laptop. Any user with administrator rights can recover saved keys. Use strong passwords and don't allow others to access your account.