Home Windows See all wifi passwords saved in Windows 10

See all wifi passwords saved in Windows 10

121 views

How to review the entire wifi password you saved when using Windows 10 so far, provided you haven’t pressed Forget

press Windows + R To open the run dialog and enter the following cmd. Then enter the powershell then paste the following command

Loading cover_cmd.png ...

Code:

(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=$name;PASSWORD=$pass }} | Format-Table -AutoSize

Or type windows + r and enter powershell. After you finish paste the command, press Enter and all wifi and wifi password that you have entered and have not pressed Forget will be done.

See all wifi passwords saved in Windows 10

After pasting the command you press Enter and all wifi and wifi password that you have entered and have not pressed Forget will appear

Loading cover_ket_qua.png ...

That’s it.

Rate this post

Related Tips And Tricks

Leave a Comment

Tips and Tricks

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept