Monitoring A Server During The Day
Ive posted this in another thread, but thought it would be good in here too as general technical reference:Put the following into a batch file on a windows machine and watch it monitor the domain, the variables are the domain.com variable and the "sleep" variable, this is monitored in seconds and will allow you to set how often you want it to check.
Enjoy

------------------
:repagain
time /T >> c:\pinger.txt
date /T >> c:\pinger.txt
ping domain.com >> c:\pinger.txt
tracert domain.com >> c:\pinger.txt
sleep 120
goto repagain
------------------
any questions or improvements, feel free to update the script
