@echo off
:Process
tasklist >Process.txt
type Process.txt | Find "TTPlayer" && goto RunProgram
:CMPShutDown
explorer
exit
:RunProgram
echo ok
goto Process
上面是监控进程批处理
DIM objShell
set objShell=wscript.createObject("wscript.shell")
WScript.Sleep(10000)
iReturn=objShell.Run("cmd.exe /C d:/1.bat", 0, TRUE)
上面是后台运行批处理的VBS脚本
使用ScriptCryptor把VBS脚本转换成EXE文件,这样做就是防止批处理的位置被人看到
然后用Instsrv.exe把VBS代码添加成服务程序 随系统启动而启动
最后是将需要开机启动的程序添加到服务中去 跟上面的操作是一样的