PING command with date and time in logs

Solved
rens31 Posted messages 27 Status Member -  
 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

3 answers

  1. jee pee Posted messages 9441 Registration date   Status Moderator Last intervention   9 981
     
    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.
    12