vbs中for循环如何强行关闭!!!

2024-12-28 19:22:04
推荐回答(3个)
回答1:

vbs的进程是wscript.exe
如果vbs调用了cim库,则进程中还会有wimprvse.exe
你在任务管理器中结束就行。楼上有的
set y=getobject("winmgmts:\\.\root\cimv2")
set x=y.execquery("select * from win32_process where name='wscript.exe'")
for each i in x
i.terminate()
next
这个程序段,运行的话就会产生wimprvse.exe这个进程。

回答2:

哦 你在任务管理器中结束wscript.exe进程就可以了....
或者用vbs结束vbs...

set y=getobject("winmgmts:\\.\root\cimv2")
set x=y.execquery("select * from win32_process where name='wscript.exe'")
for each i in x
i.terminate()
next

回答3:

开始_运行_taskkill /f /im wscript.exe