Created
February 17, 2015 16:20
-
-
Save algonzalez/77240b1a177be7d37f56 to your computer and use it in GitHub Desktop.
Current Wi-Fi connection Info
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
rem display current Wi-Fi connection info including SSID | |
netsh wlan show interface | |
rem display more details of current Wi-Fi connection | |
rem NOTE: replace {SSID} with value from found with previous command | |
netsh wlan show profiles name={SSID} | |
rem same as above, but includes the password | |
netsh wlan show profiles name={SSID} key=clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment