Skip to content

Instantly share code, notes, and snippets.

@JohannesDeml
Created June 3, 2016 22:18
Show Gist options
  • Save JohannesDeml/766f976103099fe209a2670e22081946 to your computer and use it in GitHub Desktop.
Save JohannesDeml/766f976103099fe209a2670e22081946 to your computer and use it in GitHub Desktop.
Windows get information about all saved wifis on a computer including their passwords (Which is otherwise kind of hard with Windows 10)
netsh wlan show profiles
set /p wifiName=For which wifi do you want to know the password?
netsh wlan show profile name="%wifiName%" key=clear
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment