yosoysupercholo

programa comprobar coneccion internet

Oct 30th, 2011
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.43 KB | None | 0 0
  1. ::programa comprobar coneccion internet
  2. @echo off
  3.  
  4. color 0E
  5. mode con cols=70 lines=8
  6. : START
  7. SET CONNECT=SI
  8. PING 72.14.204.147 | FIND "TTL=" > NUL
  9. IF NOT ERRORLEVEL 1 GOTO SI
  10. IF ERRORLEVEL 1 SET CONNECT=NO
  11. ECHO %CONNECT% tienes conexion a internet en este momento
  12. PING 1.1.1.1 -n 10 -w 30000 >NUL
  13. CLS
  14. GOTO START
  15. pause>nul
  16. EXIT
  17. :SI
  18. ECHO Estas conectado a internet
  19. PING 1.1.1.1 -n 1 -w 30000 >NUL
  20. CLS
  21. GOTO START
  22. pause>nul
  23.  
Advertisement
Add Comment
Please, Sign In to add comment