On 24 Jul 2008 at 12:18, Bill Lambert  wrote:

>
> Hello all…
>
> I’m looking for a free tool

If you're looking for "free tools" there are lots of them here on the list. ;-) Some them will get you "all Shook up" ...

> (if there is one) that will ping multiple addresses (like Freeping) but will
> also log the results.Is there one that you can recommend?

batch file pinglog.cmd:
---------------------CUT HERE------------------
cd/d "%temp%"
:repeat
for %%a in (1.2.3.4 4.5.6.7 7.8.9.10 1.3.5.7) do  ping %%a > ping.log
choice /T:Y,15 repeat?
if errorlevel 2 goto done
goto repeat
:done
type ping.log
---------------------CUT HERE------------------

repeats every 15 seconds.

You can ping a longer list if your FOR loop reads from a file.  See FOR /? for how to do this.

What exactly are you trying to do?


--
Angus Scott-Fleming
GeoApps, Tucson, Arizona
1-520-290-5038
~!

 





Reply via email to