windows下bat批處理實現守護進程

本文轉自網絡,因爲找不到原做者,於是沒法知道出處。若是有幸讓原做者看到,請聯繫我加上。先轉載至此。shell

最近幾天加班加瘋掉了,每天晚上無法睡。開發部的一個核心程序老是會本身宕機,而後須要手工去起,而這個服務的安全級別又很高,只有我能夠操做,搞得我晚上老無法睡,昨晚實在受不了了,想起之前在hp-ux下寫的shell守護進程,這回搞個windows下的bat版守護程序吧,當時晚上思路已經很遲鈍了,就叫了個兄弟讓他寫了,上去後運行效果不錯,至少昨晚我安心睡了7小時。
 
早上來把程序改完善一些,增長了記錄等功能。
實現:
檢查是否有notepad,要用的話就算成本身的進程名,若是進程宕了就過會自動重啓(會在當前目錄下生成一個start.bat)
 
 windows

@echo off

set _task=notepad.exe
set _svr=c:\windows\notepad.exe
set _des=start.bat

:checkstart
for /f "tokens=5" %%n in ('qprocess.exe ^| find "%_task%" ') do (
 if %%n==%_task% (goto checkag) else goto startsvr
)

 

:startsvr
echo %time% 
echo ********程序開始啓動********
echo 程序從新啓動於 %time% ,請檢查系統日誌 >> restart_service.txt
echo start %_svr% > %_des%
echo exit >> %_des%
start %_des%
set/p=.<nul
for /L %%i in (1 1 10) do set /p a=.<nul&ping.exe /n 2 127.0.0.1>nul
echo .
echo Wscript.Sleep WScript.Arguments(0) >%tmp%\delay.vbs 
cscript //b //nologo %tmp%\delay.vbs 10000 
del %_des% /Q
echo ********程序啓動完成********
goto checkstart


:checkag
echo %time% 程序運行正常,10秒後繼續檢查.. 
echo Wscript.Sleep WScript.Arguments(0) >%tmp%\delay.vbs 
cscript //b //nologo %tmp%\delay.vbs 10000 
goto checkstart
相關文章
相關標籤/搜索