VBS 프로 세 스 판단 코드

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 프로 세 스 판단 에 관 한 이 글 은 여기까지 소개 합 니 다.

좋은 웹페이지 즐겨찾기