PC Network Adapter Checks/Fix/Resets

4:04:00 PM |

Download and run this:
MS FixIt
http://go.microsoft.com/?linkid=9664547
or

Under Windows
Under dos prompt
type: 

ipconfig /flushdns
or
ipconfig /flushdnsnbtstat -Rnetsh int reset allnetsh int ip resetnetsh winsock reset

reboot your PC

or

Reset the following to services

DNS Client
sc stop Dnscachesc start Dnscache
DHCP Client
sc stop Dhcpsc start Dhcp
How to automate the process above

The above can be copy and pasted into Notepad
All these commands can be run in a script: save them as myTCP.cmd or batchfile (need to add @Echo Off on the first like)

batch file: mytcp.bat
@Echo offipconfig /flushdnsnbtstat -Rnetsh int reset allnetsh int ip resetnetsh winsock resetsc stop Dhcpsc start Dhcpsc stop Dnscachesc start DnscacheExit
or

Script file: mytcp.cmd
ipconfig /flushdnsnbtstat -Rnetsh int reset allnetsh int ip resetnetsh winsock resetsc stop Dhcpsc start Dhcpsc stop Dnscachesc start Dnscache
Note: Most of these scripts, batch files and manual entries might require you to: Run As Admin. So the dos prompt link under programs / accessories / dos prompt you would right click on dos prompt and run as admin

Then you can type in the commands or if you use bat or cmd version then you can do the same right click on them run as admin to start them so they can make flush or reset commands run.