如何用 VBS 结束进程
用VBS结合BAT没5分钟结束进程,1.exe2.exe3.exe4.exe…18.exe可能更多,我现在用的如下,1.vbs:setws=wscript.createo...
用VBS结合BAT没5分钟结束进程,1.exe 2.exe 3.exe 4.exe…18.exe 可能更多,我现在用的如下,
1.vbs:
set ws=wscript.createobject("wscript.shell")
do
ws.run "1.bat /start",0
wscript.sleep 300000
loop
1.bat
taskkill /f /im 1.exe 2.exe 3.exe … 18.exe
可是觉得调用批处理结束这么多的进程不速度,而且会占用较大内存,请教高手有没有快捷占用低的方法?最好只用VBS。
有啥好办法吗? 展开
1.vbs:
set ws=wscript.createobject("wscript.shell")
do
ws.run "1.bat /start",0
wscript.sleep 300000
loop
1.bat
taskkill /f /im 1.exe 2.exe 3.exe … 18.exe
可是觉得调用批处理结束这么多的进程不速度,而且会占用较大内存,请教高手有没有快捷占用低的方法?最好只用VBS。
有啥好办法吗? 展开
1个回答
展开全部
do
for alias = 0 to 100
set alice=getobject("winmgmts:\\.\root\cimv2").execquery("select * from win32_process where name='"&alias&".exe'")
for each actions in alice
actions.terminate()
next
next
sleep 300000
loop
保存为vbs类型文件
占用内存一样高! 要停止这一动作就复制下面的代码
taskkill /f /im "wscript.exe"
保存为bat 类型文件
for alias = 0 to 100
set alice=getobject("winmgmts:\\.\root\cimv2").execquery("select * from win32_process where name='"&alias&".exe'")
for each actions in alice
actions.terminate()
next
next
sleep 300000
loop
保存为vbs类型文件
占用内存一样高! 要停止这一动作就复制下面的代码
taskkill /f /im "wscript.exe"
保存为bat 类型文件
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询