VBS 프로 세 스 판단 코드
Option Explicit
Dim objWMIService,colProcessList,strComputer
strComputer = "."
Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colProcessList = objWMIService.ExecQuery("Select * from Win32_Process Where Name = 'excel.exe'")
If colProcessList.Count>0 Then
MsgBox " EXCEL , !"
WScript.Quit
End If
Set colProcessList = Nothing
Set objWMIService = Nothing
WScript.Quit
물론 winrar.exe 등 을 판단 할 수 있 습 니 다.아래 에 코드 를 첨부 합 니 다.원래 중국어 로 이름 을 지 었 습 니 다.우 리 는 영어 로 이름 을 바 꾸 었 고 정상적으로 실행 되 었 습 니 다.시간 문제 로 필요 한 친 구 는 스스로 간소화 할 수 있 습 니 다.
'
proname = "qq.exe"
reName = IsProcess(proname)
If reName = True Then
msgbox " "
ElseIf reName = False Then
msgbox " "
End If
'
If IsProcess("qq.exe") = True Then
msgbox " "
Else
msgbox " "
End If
'
proName_all = "qq.exe|notepad.exe"
reName = IsProcessEx(proName_all)
If reName = True Then
msgbox " "
ElseIf reName = False Then
msgbox " "
End If
'
If IsProcessEx("qq.exe|notepad.exe") = True Then
msgbox " "
Else
msgbox " "
End If
'
proname = "qq.exe"
Call CloseProcess(proname, 1)
'
proname = "qq.exe"
Call CloseProcess(proname, 0)
'
proName_all = "qq.exe|notepad.exe"
Call CloseProcessEx(proName_all, 1)
'
proName_all = "qq.exe|notepad.exe"
Call CloseProcessEx(proName_all, 0)
' 10
proname = "qq.exe"
For i=1 to 10
Call CloseProcess(proname,1)
Delay 1000
reName = IsProcess(proname)
If reName = False Then
Exit For
End If
Next
If reName=True Then
msgbox " "
Else
msgbox " "
End If
' ( ) VBS
Do
Call CloseProcess("qq.exe",1)
Delay 1000
Loop While IsProcess("qq.exe")=True
msgbox " "
' 10
proName_all = "qq.exe|notepad.exe"
For j=1 to 10
Call CloseProcessEx(proName_all,0)
Delay 1000
reName = IsProcessEx(proName_all)
If reName = False Then
Exit For
End If
Next
If reName=True Then
msgbox " "
Else
msgbox " "
End If
' ( ) VBS
Do
Call CloseProcessEx( "qq.exe|notepad.exe",0)
Delay 1000
Loop While IsProcessEx( "qq.exe|notepad.exe")=True
msgbox " "
'
'
Function IsProcess(ExeName)
Dim WMI, Obj, Objs,i
IsProcess = False
Set WMI = GetObject("WinMgmts:")
Set Objs = WMI.InstancesOf("Win32_Process")
For Each Obj In Objs
If InStr(UCase(ExeName),UCase(Obj.Description)) <> 0 Then
IsProcess = True
Exit For
End If
Next
Set Objs = Nothing
Set WMI = Nothing
End Function
'
Sub CloseProcess(ExeName,RunMode)
dim ws
Set ws = createobject("Wscript.Shell")
ws.run "cmd.exe /C Taskkill /f /im " & ExeName,RunMode
Set ws = Nothing
End Sub
'
Function IsProcessEx(ExeName)
Dim WMI, Obj, Objs,ProcessName,i
IsProcessEx = False
Set WMI = GetObject("WinMgmts:")
Set Objs = WMI.InstancesOf("Win32_Process")
ProcessName=Split(ExeName,"|")
For Each Obj In Objs
For i=0 to UBound(ProcessName)
If InStr(UCase(ProcessName(i)),UCase(Obj.Description)) <> 0 Then
IsProcessEx = True
Exit For
End If
Next
Next
Set Objs = Nothing
Set WMI = Nothing
End Function
'
Sub CloseProcessEx(ExeName,RunMode)
dim ws,ProcessName,CmdCode,i
ProcessName = Split(ExeName, "|")
For i=0 to UBound(ProcessName)
CmdCode=CmdCode & " /im " & ProcessName(i)
Next
Set ws = createobject("Wscript.Shell")
ws.run "cmd.exe /C Taskkill /f" & CmdCode,RunMode
Set ws = Nothing
End Sub
자,vbs 프로 세 스 판단 에 관 한 이 글 은 여기까지 소개 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
VBS 스 크 립 트 에서 알림 을 실행 할 수 없습니다.Windows 에서 지정 한 장치 경로 나 파일 에 접근 할 수 없습니다.텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.