Last active
February 14, 2024 08:21
-
-
Save DoganM95/8cfa4f0e487bafd203f195c8ebdd08a4 to your computer and use it in GitHub Desktop.
Get a wifi password for a specific ssid using windows 10 command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List all saved ssid's | |
netsh wlan show profiles | |
# Get cleartext password of specific ssid (replace "profile") | |
netsh wlan show profile name=profile key=clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment