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

Hard drive Copying

Requirements: Windows 2000,XP Pro, 2003 Server robocopy.exe- in the windows resource kits or download here…

PEN TEST

Kali Linux: Pen testing Linux Distro: https://www.kali.org/get-kali/ VMware Images: https://www.kali.org/get-kali/#kali-virtual-machines AirCrack-NG: WIFI Acunetix: Web Servers…

FreeNAS

Features: OpenVNP plugin https://joepaetzel.com/2013/09/22/openvpn-on-freenas-9-1/ FTP server Web server SAMBA etc.   How to install: -…