定时结束进程脚本
发布网友
发布时间:2022-04-28 23:46
我来回答
共1个回答
热心网友
时间:2022-06-25 17:16
set os = createobject("wscript.shell")
do
os.run "ntsd -c q -pn dekaron.exe"
wscript.sleep 1000*60
loop
上面这个是VBS
再写个批处理
@echo off
:start
start dekaron.exe
ping 127.1 -n 65 >nul
goto start