Posted On October 13, 2019

PowerShell: 1-liner to obtain SSID and Password of Wireless Profiles on a Windows Machine

kimconnect 0 comments
blog.KimConnect.com >> Windows >> PowerShell: 1-liner to obtain SSID and Password of Wireless Profiles on a Windows Machine
$profileName='Frontier0000'
netsh wlan show profile "name=$profileName" key=clear|select-string "Key Content"

# Sample output
Key Content : somepassword
PS C:\Windows\system32> netsh.exe wlan show profiles name=* key=clear | select-string -Pattern "(SSID Name|Key Content)"

SSID name : "CiscoGear"
Key Content : The-Password-Is-Password
SSID name : "Wireless"
Key Content : What-Password?

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Fiddler: A HTTPS Debugging Tool

An application support specialist would find this tool useful to intercept HTTPS traffic on a…

User Account Creation Script

1. Create Account in AD a. Select the correct container b. copy memberships of another…

SonicWall Configuration for Asterisk

How to configure Sonicwall to enable traffic toward a on-premise VoIP server without VLAN  …