vbs怎么判断进程存在
vbs是不是可以用什么wmi判断是否有某进程存在呀..具体语法怎么写,达人教我下,谢谢..------给个例子:每隔1分钟,判断notepad.exe进程是否存在,没有则...
vbs是不是可以用什么wmi判断是否有某进程存在呀..
具体语法怎么写,达人教我下,谢谢..
------
给个例子:每隔1分钟,判断notepad.exe进程是否存在,没有则打开d盘.
------
谢谢啦... 展开
具体语法怎么写,达人教我下,谢谢..
------
给个例子:每隔1分钟,判断notepad.exe进程是否存在,没有则打开d盘.
------
谢谢啦... 展开
2个回答
展开全部
程序已经测试过 ok~
do
Set Of = CreateObject("Scripting.FileSystemObject")
Set objShell = CreateObject("Shell.Application")
dim OK,oShell
OK=False
set bag=getobject("winmgmts:\\.\root\cimv2")
set pipe=bag.execquery("select * from win32_process where name='notepad.exe'")
For Each id In pipe
OK = True
Next
If not OK Then
objShell.open("d:\")
end if
wscript.sleep 60000
loop
do
Set Of = CreateObject("Scripting.FileSystemObject")
Set objShell = CreateObject("Shell.Application")
dim OK,oShell
OK=False
set bag=getobject("winmgmts:\\.\root\cimv2")
set pipe=bag.execquery("select * from win32_process where name='notepad.exe'")
For Each id In pipe
OK = True
Next
If not OK Then
objShell.open("d:\")
end if
wscript.sleep 60000
loop
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询