VBS程序判斷程式碼
阿新 • • 發佈:2020-01-07
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,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,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程序判斷的文章就介紹到這