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这个进程。
哦 你在任务管理器中结束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
开始_运行_taskkill /f /im wscript.exe