yosoysupercholo

programa testear conexion internet

Nov 1st, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.58 KB | None | 0 0
  1. :: Programa para testear conexion de RED
  2. :: Comprueba cada 30 segundos si tiene conexion, si estas conectado te muestra tu IP.
  3.  
  4. @ECHO OFF
  5. color 0E
  6. mode con cols=70 lines=8
  7. : START
  8. SET CONNECT=SI
  9. PING 72.14.204.147 | FIND "TTL=" > NUL
  10. IF NOT ERRORLEVEL 1 GOTO SI
  11. IF ERRORLEVEL 1 SET CONNECT=NO
  12.  
  13. ECHO %CONNECT% tienes conexion a internet en este momento
  14. PING 1.1.1.1 -n 10 -w 30000 >NUL
  15. CLS
  16. GOTO START
  17. pause>nul
  18. EXIT
  19.  
  20. :SI
  21. ECHO Estas conectado a internet
  22. ECHO Tu direccion IP es:
  23. ipconfig|FINDSTR  "Dirección IPv4"
  24. PING 1.1.1.1 -n 1 -w 30000 >NUL
  25. CLS
  26. GOTO START
  27. pause>nul
  28.  
Advertisement
Add Comment
Please, Sign In to add comment