User Tools

Site Tools


netsh_-_reset_int_winsock

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
netsh_-_reset_int_winsock [2023/03/13 15:56] – external edit 127.0.0.1netsh_-_reset_int_winsock [2024/10/17 21:42] (current) – external edit 127.0.0.1
Line 1: Line 1:
- 
 <code batch> <code batch>
 @ECHO off @ECHO off
 :: Window Attributes :: Window Attributes
 +:: Set the color of the command prompt to green on black
 COLOR 0A COLOR 0A
 +
 ECHO.   ECHO.  
 ECHO.   ECHO.  
-ECHO ------ restablecer el adaptador ethernet -----+ECHO ------ Restablecer el adaptador ethernet ----- 
 +:: Reset the TCP/IP settings of the network adapter
 netsh int ip reset netsh int ip reset
-ECHO ----------- restablecer el winsock -----------+ 
 +ECHO ----------- Restablecer el winsock ----------- 
 +:: Reset the Winsock Catalog
 netsh winsock reset netsh winsock reset
-ECHO ------------ restablecer ARP cache ------------+ 
 +ECHO ------------ Restablecer ARP cache ------------ 
 +:: Delete the ARP cache
 netsh interface ip delete arpcache   netsh interface ip delete arpcache  
-ECHO ------------ restablecer cache DNS ------------+ 
 +ECHO ------------ Restablecer cache DNS ------------ 
 +:: Flush the DNS resolver cache
 ipconfig /flushdns ipconfig /flushdns
 +
 ECHO. ECHO.
 ECHO. ECHO.
-ECHO.Debe reiniciar el equipo para aplicar los cambios.+ECHO. Debe reiniciar el equipo para aplicar los cambios. 
 +:: Prompt the user to restart their computer
 PAUSE PAUSE
 +
 EXIT EXIT
 +:: End of batch file
 +
 </code> </code>
netsh_-_reset_int_winsock.1678722978.txt.gz · Last modified: 2024/10/17 21:42 (external edit)