1

how do I save the record ping "in every single hour" for a certain period, for example for 2 weeks, with the format dd / mm / ss, dd / MM / YYYY and beside it is the result of the ping.

So we can monitor our internet connection performance in every hour. Especially in Windows 7

Example of format:

30/10/2014 10:55:20 Reply from 103.11.30.57: bytes = 32 time = 3ms TTL = 58 
Paul
  • 61,193

1 Answers1

1

I'd probably be lazy and just make a very basic BAT file:

:Ping
ping {whatever it is you are pinging} >>ping.log
sleep 3600
goto :Ping

Of course, not everybody has the sleep command, but it's part of Cygwin, and there are probably other ways to "wait an hour".

ClioCJS
  • 346