In Powershell is there a better way to ping a host indefinitely besides doing something like this:

$max = [System.Int32]::MaxValue
ping host -count $max


The '%WINDIR%\System32\ping.exe' has a '-t' option to ping until Ctrl-C is pressed.

link|improve this question

50% accept rate
feedback

2 Answers

up vote 2 down vote accepted
while (1) {
   ping host
}

This will ping indefinitely until you press Ctrl-C just like ping -t would.

link|improve this answer
1  
while (1) { ping host -count 1000 } has the nice side effect of hiding most of the ping statistics. – Luke Quinane Jul 24 '09 at 6:56
feedback

There is nothing at all wrong with John T's answer, but I will point out just for completeness sake that ping.exe is still there so this would work just fine in PS as well:

ping.exe host -t
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.