定时关闭(程序)进程

 

把一下代码保存为 aa.bat

 

tasklist /nh>D:\temp\tasklist.txt                              ##得到进程列表
find /i "Thunder5.exe" D:\temp\tasklist.txt              ##查找是否在进程表中
if ERRORLEVEL 1 (echo 不存在) else (ntsd -c q -pn thunder5.exe)          ##是,则关闭它。

 

 

新建一个aa.bat定时任务。就可以执行了

你可能感兴趣的:(C++,c,C#)