1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| @echo off set Check_Host=%1 set SMS_TN=%2 set SMS_TELNUM=%SMS_TN:"= %
@For /F "tokens=1,2,3 delims=:. " %%A in ('echo %time%') do @( Set Hour=%%A Set Min=%%B Set Sec=%%C Set p_time=%%A:%%B:%%C ) rem: xp @For /f "tokens=1-3 delims=/ " %%a in ('date /t') do (set p_date=%%c-%%b-%%a) rem: windows 2003 @For /f "tokens=1-4 delims=/ " %%a in ('date /t') do (set p_date=%%d-%%b-%%c) set DateString=%p_date%-%p_time%
set execFileBASE=f:\dba set check_file=%execFileBASE%\check\log\check_ping_1.ck set SMS_MESSAGE=%Check_Host% is not availabe yet. -- %DateString%
rem: 中華電訊的sms程式 set notify=%execFileBASE%\notify2\Release\notify2.exe set SMS_IP=中華電訊的sms主機IP set SMS_USER=中華電訊的sms帳號 set SMS_PWD=中華電訊的sms密碼
%SystemRoot%\system32\ping.exe -n 1 %Check_Host% >nul if errorlevel 1 goto NoServer
echo %Check_Host% is availabe. if exist %check_file% (del %check_file% /Q) rem Insert commands here, for example 1 or more net use to connect network drives. goto :EOF
:NoServer echo %Check_Host% is not availabe yet. if exist %check_file% ( for %%i in (%SMS_TELNUM%) do %notify% %SMS_IP% %SMS_USER% %SMS_PWD% %%i %SMS_MESSAGE% ) echo "error" > %check_file% goto :EOF
|