PING command with date and time in logs
Solved
rens31
Posted messages
27
Status
Membre
-
Dr NO -
Dr NO -
Hello,
Everything is in the title, I am desperately looking for a DOS command or a software that would allow me to have the time and date with each request. Let me explain, we regularly have issues with interruptions from operator links, so I would like to continuously ping the concerned IP address in order to notice the delays exceeding and to know exactly at what time it cut off so that I can report the information accurately to the concerned operator.
Configuration: Windows 7 / Safari 535.2
Everything is in the title, I am desperately looking for a DOS command or a software that would allow me to have the time and date with each request. Let me explain, we regularly have issues with interruptions from operator links, so I would like to continuously ping the concerned IP address in order to notice the delays exceeding and to know exactly at what time it cut off so that I can report the information accurately to the concerned operator.
Configuration: Windows 7 / Safari 535.2
3 réponses
Hello,
With 2 small .cmd files, it works:
lance.cmd
call test.cmd >rapport.txt
test.cmd
echo off
:loop
echo ------------------------------------------------%DATE% %TIME%
ping www.google.fr
goto loop
You run lance.cmd and you have the log in rapport.txt
Best regards
--
A stranger is a friend you haven't met yet.
With 2 small .cmd files, it works:
lance.cmd
call test.cmd >rapport.txt
test.cmd
echo off
:loop
echo ------------------------------------------------%DATE% %TIME%
ping www.google.fr
goto loop
You run lance.cmd and you have the log in rapport.txt
Best regards
--
A stranger is a friend you haven't met yet.