Created
March 30, 2023 05:51
-
-
Save asahicantu/c0583a881f14341e515fd250274a68f4 to your computer and use it in GitHub Desktop.
WIN10-Show windows WIFI profiles and passwords
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 wifi profiles | |
netsh wlan show profiles | |
## List all wifi profiles with key | |
netsh wlan show profiles key = clear | |
## List a specific wifi profile | |
netsh wlan show profile name = $wifi_name | |
## List a specific wifi profile with key | |
netsh wlan show profile name = $wifi_name key=clear> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment