User Tools

Site Tools


howtos:extract_wifi_keys_from_windows_desktop
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Previous revision
howtos:extract_wifi_keys_from_windows_desktop [02/12/2018 21:34] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +Dump wifi information and keys in the terminal:
  
 +<code>
 +powershell -ep ByP -c "(netsh wlan show profiles) | Select-String '\:(.+)$' | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name=$name key=clear)}"
 +</code>
 +
 +
 +Redirect the output to a file:
 +
 +
 +<code>
 +powershell -ep ByP -c "(netsh wlan show profiles) | Select-String '\:(.+)$' | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name=$name key=clear)} > wifipass.txt"
 +</code>
howtos/extract_wifi_keys_from_windows_desktop.txt · Last modified: 02/12/2018 21:34 by 127.0.0.1