Ping computers with Time Stamp
Here it is: A small script that pings computer with Time Stamp:
@Echo off
echo %time% > c:\PingServer.txt
Ping 111.34.22.45 >> C:\PingServer.txt
Note the ">>" in above redirector. This redirector enables you to append the file rather than overwrite it.
Will sought more on this if time permits :)
