Last active
March 11, 2023 05:39
-
-
Save starfreck/f80fdef067e26dab21a6a82ef499faa1 to your computer and use it in GitHub Desktop.
This is a small "bat" file which can Enable and Disable Wi-Fi Adaptor on Win 10 (Run it as Admin)
This file contains hidden or 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
| @Echo off | |
| set interface="Wi-FI" | |
| netsh interface set interface "Wi-Fi" disable | |
| netsh interface set interface "Wi-Fi" enable | |
| :end |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check this to make an EXE from the BAT file.