Skip to content

Instantly share code, notes, and snippets.

@Saturate
Last active March 10, 2023 08:09
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save Saturate/fe58d57db4db36b0dfb40b9ab07efa65 to your computer and use it in GitHub Desktop.
Save Saturate/fe58d57db4db36b0dfb40b9ab07efa65 to your computer and use it in GitHub Desktop.
PowerShell Wifi Script
# Run this script as an Admin user and get a list of all WiFi passwords.
$listProfiles = netsh wlan show profiles | Select-String -Pattern "All User Profile" | %{ ($_ -split ":")[-1].Trim() };
$listProfiles | foreach {
$profileInfo = netsh wlan show profiles name=$_ key="clear";
$SSID = $profileInfo | Select-String -Pattern "SSID Name" | %{ ($_ -split ":")[-1].Trim() };
$Key = $profileInfo | Select-String -Pattern "Key Content" | %{ ($_ -split ":")[-1].Trim() };
[PSCustomObject]@{
WifiProfileName = $SSID;
Password = $Key
}
}
@alstergee
Copy link

that did absolutely nothing lol

@Saturate
Copy link
Author

that did absolutely nothing lol

Care to elaborate a bit? Works here, did you run it in powershell? And are you sure that you allow running scripts?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment