Windows TCP/IP Reset

less than 1 minute read

Description:

Do these steps to reset the TCP/IP stack for Windows.

To Resolve:

  1. run => cmd => Type:

    1
    2
    3
    4
    
    netsh int ip reset resetlog.txt
    netsh winsock reset
    netsh int ipv4 reset
    netsh int ipv6 reset
    
  2. 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