Created
November 18, 2014 09:33
-
-
Save TimSC/21b9f9b955e8f11adb3f to your computer and use it in GitHub Desktop.
Windows network reset script
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 Release current IP address | |
ipconfig /release | |
echo Flushes the ARP cache | |
arp -d * | |
echo Flush the NetBIOS cache | |
nbtstat -R | |
Refresh DCHP lease for IP address | |
ipconfig /renew | |
echo Flushes the DNS cache | |
ipconfig /flushdns | |
echo Re-registers with WINS | |
nbtstat -RR | |
echo Re-register with DNS | |
ipconfig /registerdns |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment