An easier statement to use a script like this is:
Computer networks suffer collapses and configurations, resulting in unwanted uploads of information over the Internet.
This script is used to reset and prepare the computer to receive network configurations from the provider and can then be configured. It goes from the hardware and settings and resets them.
Let’s start with the shell administrator – cmd, to create this script:
1 | C:\WINDOWS\system32>notepad reset_net.bat |
Let’s add the source code to the script:
1 2 3 4 5 6 7 8 9 10 11 12 13 | ipconfig /all >c:\ipconfig.txt ipconfig /flushdns nbtstat -R nbtstat -RR netsh int reset all ipconfig /release timeout /t 120 ipconfig /renew netsh int ipv4 reset >c:\resetlog4.txt netsh int ipv6 reset >c:\resetlog6.txt netsh winsock show catalog >c:\winsock.txt netsh winsock reset catalog shutdown /r /t 0 |
After you save the file then run it:
1 | C:\WINDOWS\system32>reset_net.bat |
The result will fix and then will reboot your system after 120 seconds.
You can search the internet or read the documentation about these commands.
The script can be used on Windows systems starting with version 7.x