---
title: "Find a saved WIFI password on Windows 10 or Windows 11"
author: "Yaroslav Shmarov"
date: "2023-03-30"
canonical_url: "https://blog.superails.com/windows-get-wifi-password"
markdown_url: "https://blog.superails.com/windows-get-wifi-password.md"
description: "I sometimes need to find a password on my Windows computer, but Windows keeps getting new updates all the time and changing things."
tags: ["windows","password"]
license: "GNU AGPL v3. Credit Yaroslav Shmarov and link the canonical URL."
---

# Find a saved WIFI password on Windows 10 or Windows 11

I sometimes need to find a password on my Windows computer, but Windows keeps getting new updates all the time and changing things.

Nevertheless, there is one easy way to find a saved wifi password stays valid no matter what version of Windows you are on.

First, open the **command prompt**:

![windows-wifi-command-prompt.png](https://blog.superails.com/assets/images/windows-open-command-prompt.png)

Type this in the command prompt to display all the saved WIFI Network names:

```shell
netsh wlan show profiles
```

![windows-wifi-list.png](https://blog.superails.com/assets/images/windows-wifi-list-example.png)

Type this in the command prompt to display the details of any network:

```shell
netsh wlan show profile name="NETWORK" key=clear
```

In my case, I wanted to get the password of the network named `Biblioteka`, so I typed:

```shell
netsh wlan show profile name="Biblioteka" key=clear
```

The saved network password is highlighted in blue:

![windows-wifi-password.png](https://blog.superails.com/assets/images/windows-wifi-password-example.png)

That's it!
