本帖最后由 yyz219 于 2022-9-17 09:55 编辑
问题解决了:- '【有notepad2.exe进程--→运行"用Notepad3打开.vbs"】【无notepad2.exe进程--→运行"用Notepad2打开.vbs"】
- ProcExist = "0"
- Set objWMIProcess = GetObject("winmgmts:\\.\root\cimv2").ExecQuery("Select * From Win32_Process")
- For Each objProcess In objWMIProcess
- If objProcess.Name = "Notepad2.exe" Then '【左边是需要检测的进程】
- ProcExist = "1"
- '【notepad2.exe进程存在】【用notepad3.exe打开文本】
- CreateObject("WScript.Shell").Run "用Notepad3打开.vbs",0
- WScript.Quit '【退出】
- End If
- Next
- If ProcExist = "0" Then
- '【notepad2.exe进程不存在】【用Notepad2打开打开文本】
- CreateObject("WScript.Shell").Run "用Notepad2打开.vbs",0
- WScript.Quit '【退出】
- End If
复制代码 *************************************************************
原来的问题:
00.vbs:
If IsProcess("qq.exe") =True Then
MessageBox"发现进程"
Else
MessageBox"没有发现进程"
End If
 |