Reading Time: < 1 minute
netsh wlan show profile
netsh wlan show profile name=”mywifi” key=clear
or to get the whole list exported to a file

powershell.exe netsh wlan show profiles|Select-String -Pattern ” User Profile”|ForEach-Object{echo $_.Line.split(‘:’)[1].trim()}|ForEach-Object{netsh wlan show profiles name=$_ key=clear}|Select-String -Pattern “Key Content|SSID name” >> C:\Windows\Temp\Wifi_Passwords.txt


0