Posts Ping every X minutes
Post
Cancel

Ping every X minutes

http://superuser.com/questions/345214/how-can-i-perform-a-ping-every-x-minutes-and-check-the-response-time

1
2
3
4
5
6
7
@ECHO OFF
set IPADDRESS=x.x.x.x
set INTERVAL=10
:PINGINTERVAL
ping google.com -n 1
timeout %INTERVAL%
GOTO PINGINTERVAL

or

1
2
3
4
ping -i 30 8.8.8.8
ping -t google.com -w 10000

ping google.com -n 1

http://www.nirsoft.net/utils/multiple_ping_tool.html

#ping

origin - http://www.pipiscrew.com/?p=6661 ping-every-x-minutes

This post is licensed under CC BY 4.0 by the author.
Contents

Trending Tags