I found an answer for creating a batch file for continuous pinging:
How can I perform a ping every X minutes and check the response time?
But, I need to include a time and date stamp in the output log.
Would someone help me complete the batch file, please?
@ECHO OFF
set IPADDRESS=x.x.x.x
set INTERVAL=60
:PINGINTERVAL
ping %IPADDRESS% -n 1 >> filename.txt
timeout %INTERVAL%
GOTO PINGINTERVAL