Created
February 11, 2022 19:25
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
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