CMD
1
2
3
4
5
6
//src - https://fossbytes.com/find-wifi-password-connected-networks-cmd-windows/
//find #SSID
netsh wlan show profile
//list the #SSID properties
netsh wlan show profile #SSID key=clear
more https://www.tenforums.com/tutorials/3530-backup-restore-wireless-network-profiles-windows-10-a.html
POWERSHELL (batch list)
1
2
//src - https://www.tenforums.com/tutorials/27997-see-wireless-network-security-key-password-windows-10-a.html
(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 -Wrap
–
Batch File https://github.com/PassingTheKnowledge/Batchography/blob/master/WifiPasswordReveal.bat
–
By Windows Vista and towards the wifi passwords stored at C:\ProgramData\Microsoft\Wlansvc\Profiles\Interfaces{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}{Random-GUID}.xml
#wifi #wep #wpa #wpa2 #reveal
origin - http://www.pipiscrew.com/?p=13805 see-your-wireless-network-security-key-password