@echo 每小时检查主机是否能Ping通自己的域名,如果不能,则重新启动机器,如装防火墙过滤,请考虑其他办法,或开放ICMP协议 @echo 检查中...... @echo off echo execute-date:>>c:/checktoreboot.log date /t>>c:/checktoreboot.log echo execute-time:>>c:/checktoreboot.log time /t>>c:/checktoreboot.log
set hh=%time:~0,2% set /a hh +=1 if /i %hh% GEQ 24 set /a hh = 0 at %hh%:00 C:/CheckToReboot.bat ping -n 1 www.yourname.com|find "Request" && shutdown -r echo ==============================================>>c:/checktoreboot.log @echo on @echo 检查完毕!