Home / HomePage / Scripts / Ping

Ping


A simple cmd script that can perform an action if a ping is successful. You can change lines 15 and 18 to do whatever you like.

In line 4, I use ping -n 1 %1 - this has several implications. First, the %1 is whatever argument you provide to the script. So if the script were called pingcheck and you executed pingcheck 192.168.0.1,  then the script will ping 192.168.0.1 and only get to :pingsuccess if it sees one or more instances of the string "Reply from 192.168.0.1" in the output from ping.

Second, you can change the -n parameter. If you're worried a single ping may not get through, use ping -n 4 and the script will still get to :pingsuccess if even one ping gets through.

Third, ping's reply strings always use the IP address, not the name. So this script wouldn't work if you invoked it with, say, pingcheck www.yahoo.com - since there would never be output saying Reply from www.yahoo.com. You need to provide a dotted-quad IP address as the argument. This is not optimal I admit! But since I have not mapped out every possible reply message that ping might return, it's the best I could do. If you know where full docs of all possible ping responses exist, let me know! Or maybe the errorlevels ping returns.

  1. @echo off
  2. setlocal
  3. set replycount=0
  4. for /f %%a in ('ping -n 1 %1 ^|findstr /c:"Reply from %1"') do call :incrementcounter
  5. if %replycount% gtr 0 (call :pingsuccess) else call :pingfail
  6. echo Done.
  7. endlocal
  8.  
  9. :incrementcounter
  10. set /a replycount= %replycount% + 1
  11. goto :eof
  12.  
  13. :pingsuccess
  14. echo Successful ping!
  15. goto :eof
  16.  
  17. :pingfail
  18. echo Failed ping.
  19. goto :eof


Here's what the ouput looks like:

C:\>pingcheck 192.168.244.244 <--a purposely bad address
Failed ping.
Done.

C:\>pingcheck 192.168.0.1 <-- a known good address
Successful ping!
Done.




Post a comment

Your Name or E-mail ID (mandatory)

 



 RSS of this page