Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. tracert www.google.com
  2.  
  3. :: resets the ipv4 interface
  4. netsh interface ip reset
  5.  
  6. :: flush and reregister DNs
  7. ipconfig flushdns
  8. net stop dnscache
  9. net start dnscache
  10. ipconfig /registerdns
  11.  
  12. :: clear persistent routes
  13. route print -f
  14.  
  15. :: start / restart mrxdav
  16. net stop netbt
  17. net stop mrxdav 2>nul
  18. net start mrxdav
  19. net start netbt
  20.  
  21. :: clean the arpcache
  22. arp -a -d
  23. :: I might have the order of the switches backwards and the order matters, so if that doesnt do anything put the -d before the -a
  24.  
  25. :: make sure winhttp and webclient services are running (this is a mystery to me / neither appear necessary, but both have fixed my problem on various occasions)
  26.  
  27. net start webclient
  28. net start winhttp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement