Hope this isn't off-topic with batch files. I want to keep an eye on ICMP latencies to various destinations. I found this batch file and it is at least a good starting point. It gives me what I want, but limited to once per day. I haven't worked with batch files much, and I coudln't tell you what the stuff at the top means (yet. I'd like to...if you could point me to good places)
for /f "tokens=1-4 delims=/ " %%a in ('date /t') do (set weekday=%%a& set day=%%c& set month=%%b& set year=%%d)date /t > tracert_%year%%month%%day%.txt tracert 8.8.8.8 >> tracert_%year%%month%%day%.txt tracert 10.88.10.5 >> tracert_%year%%month%%day%.txt