vaguiners

Pingar

Feb 11th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. :janela
  2. echo off
  3. mode 30,5
  4. :variaveis
  5. set pings=0
  6. set sucesso=0
  7. set falha=0
  8. if "%1"=="" (set destino=186.241.187.89) else (set destino=%1)
  9. :exibir
  10. cls
  11. title %pings% - %sucesso%/%falha%
  12. echo Destino: %destino%
  13. echo Pings: %pings%
  14. echo Sucessos/Falhas: %sucesso%/%falha%
  15. :pingar
  16. ping -n 1 %destino%>nul
  17. set /a pings+=1
  18. if "%errorlevel%"=="0" (set /a sucesso+=1) else (set /a falha+=1)
  19. goto exibir
Advertisement
Add Comment
Please, Sign In to add comment