Windows TCP/IP Reset
Description:
Do these steps to reset the TCP/IP stack for Windows.
To Resolve:
-
run => cmd => Type:
1 2 3 4
netsh int ip reset resetlog.txt netsh winsock reset netsh int ipv4 reset netsh int ipv6 reset
-
Reboot the computer. Of course, this can be made into a batch file:
1 2 3 4 5 6 7 8 9
echo "Starting networking stack reset" cd %windir%\system32 netsh int ip reset c:\windows\temp\resetlog.txt netsh winsock reset netsh int ipv4 reset netsh int ipv6 reset echo "Networking stack reset" PAUSE shutdown -r -f -t 03
Comments