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
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.
After pasting the command you press Enter and all wifi and wifi password that you have entered and have not pressed Forget will appear
That’s it.