Created
February 11, 2022 19:25
-
-
Save coffeejoshua/3f543c6cb2e1b4b1d29c8ba68149df0a to your computer and use it in GitHub Desktop.
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 Restart the network interface "Ethernet" as a workaround for Intel's bad driver | |
@echo off | |
echo "Disable Ethernet adapter as a workaround" | |
netsh interface set interface "Ethernet" disable | |
echo "... and enable it again" | |
netsh interface set interface "Ethernet" enable | |
echo "done" | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment