How do you set ping interval?

Franckwithak

Well-Known Member
Joined
Apr 23, 2008
Messages
122
Reaction score
0
Location
Johannesburg
Does anybody know if it is possible to set the Ping interval using standard cmd on Windows XP?
I need to change the time between each ping to around 90seconds.
Any ideas??
Thanks
 
Code:
@echo off
:start
ping -n 1 <destination>
ping -n 90 127.0.0.1 > NUL 2>&1
GOTO start
 
Code:
@echo off
:start
ping -n 1 <destination>
ping -n 90 127.0.0.1 > NUL 2>&1
GOTO start

Or, without a batch file:
Code:
for /L %i in (1,0,2) do @ping -n 1 <destination> & ping -n 90 127.0.0.1 > NUL 2>&1
 
Top
Sign up to the MyBroadband newsletter
X