@ECHO off
:: Window Attributes
:: Set the color of the command prompt to green on black
COLOR 0A
 
ECHO.  
ECHO.  
ECHO ------ Restablecer el adaptador ethernet -----
:: Reset the TCP/IP settings of the network adapter
netsh int ip reset
 
ECHO ----------- Restablecer el winsock -----------
:: Reset the Winsock Catalog
netsh winsock reset
 
ECHO ------------ Restablecer ARP cache ------------
:: Delete the ARP cache
netsh interface ip delete arpcache  
 
ECHO ------------ Restablecer cache DNS ------------
:: Flush the DNS resolver cache
ipconfig /flushdns
 
ECHO.
ECHO.
ECHO. Debe reiniciar el equipo para aplicar los cambios.
:: Prompt the user to restart their computer
PAUSE
 
EXIT
:: End of batch file