本帖最后由 lion991128 于 2014-11-6 14:02 编辑
回复 3# xianjie
其实最好的办法就是放在启动项和写在进程里面如果在启动程序时检查进程,有的话直接Kill. 我以前写的一个监控代码, 你看看希望对你有帮助。- @echo off
- :en
- ::结束进程
-
- taskkill /f /im communicator.exe
-
- ::启动程序
-
- tasklist |find "communicator.exe"||start "" "C:\Program Files\Microsoft Lync\communicator.exe"
-
- ::倒计时9600
-
- ping /n 9600 127.1 > null
- ::log
-
- echo In %username% this account %date% %time% For monitoring >>C:\Users\%username%\Desktop\Log.txt
-
- goto en
复制代码
|