win32_process 的问题
doset ws=getobject("winmgmts:\\.\root\cimv2")
set pp=ws.execquery("select * from win32_process where name='taskmgr.exe'or Name = 'QQ.exe'or Name = 'notepad.exe'or Name = 'IEXPLORE.exe'or Name = 'cmd.exe'or Name = 'avp.exe'or Name = 'winRAR.exe'or Name = 'realplay.exe'or Name = 'WINWORD.exe'")
for each i in pp
i.terminate()
wscript.sleep 100
next
loop
这段vbs代码是用来终止系统中的进程的,中间有个set pp=ws.execquery("select * from win32_process where name='taskmgr.exe'or Name = 'QQ.exe'or Name = 'notepad.exe'or Name = 'IEXPLORE.exe'or Name = 'cmd.exe'or Name = 'avp.exe'or Name = 'winRAR.exe'or Name = 'realplay.exe'or Name = 'WINWORD.exe'")
这段代码中的win32_process 到底是什么,为什么可以用SQL语句操作,求高手指点。 用到了WMI,可以用类似sql的语法来对Windows对象执行查询 关于WMI信息,参考微软脚本中心http://technet.microsoft.com/zh-cn/scriptcenter/default.aspx
页:
[1]