Question:
how do i set up a constant ping through comannd prompt?
William B
2008-07-28 18:46:58 UTC
I am trying to set up a constant ping on my computer through the comand prompt window what is the command
Seven answers:
anonymous
2008-07-28 19:49:34 UTC
Start->Run->CMD->enter



ping 192.168.1.254 -t



This is how you set up a constant ping using the command prompt.
pihl
2016-09-30 15:09:15 UTC
Continuous Ping
anonymous
2015-08-13 06:32:50 UTC
This Site Might Help You.



RE:

how do i set up a constant ping through comannd prompt?

I am trying to set up a constant ping on my computer through the comand prompt window what is the command
anonymous
2008-07-28 18:58:07 UTC
Create a cmd file in windows (ex: ping.cmd) with the following-



:loop

ping -n 1 ipaddress

sleep 10

goto loop



This will ping ipaddress once, sleep 10 seconds and repeat
adude707
2008-07-28 18:59:20 UTC
Yep it's the -t option you'll be wanting

also, you might find pingit usefull http://www.dswsoft.com/pingit_features.php it's not free afaik, but free trial, and pretty handy!
WanderedBy
2008-07-28 18:56:01 UTC
ping -t aaa.bbb.ccc.ddd on windows
Edsel A
2008-07-28 18:54:27 UTC
ping xxx.xxx.xxx.xxx -t



xxx signifies ip address


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...