Home » Questions » Computers [ Ask a new question ]

windows ping cmd help

windows ping cmd help

I'm looking at the ping command help and i cant see a parameter to change the time between pings. I don't mean the timeout time.

Asked by: Guest | Views: 202
Total answers/comments: 2
Guest [Entry]

"from a broadband forum:

Batch file

@echo off
:start
ping -n 1 <destination>
ping -n 5 127.0.0.1 > NUL 2>&1
GOTO start

or in a single command

for /L %i in (1,0,2) do @ping -n 1 <destination> & ping -n 5 127.0.0.1 > NUL 2>&1"
Guest [Entry]

"You can use the 3rd party FPing tool to do what you want:

fping hostIP -c -t 5000

http://www.kwakkelflap.com/fping.html"