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

Transfer Domain Controller Roles (Legacy Commands)

# Simple commands: netdom query fsmo ntdsutil roles connections connect to server SRVI-DC01 q transfer…

Domino Email Server Conversion

Lotus Notes has been considered legacy by IBM and the general IT world. It lacks…

IT Security Compliance

To prepare an organization for compliance of Section 404 of COBIT (Control Objectives for Information…