close brwoser windows
This commit is contained in:
parent
c16769f08c
commit
750be1c965
33
CLIENT_DATA/browserkill.vbs
Normal file
33
CLIENT_DATA/browserkill.vbs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
Option Explicit
|
||||||
|
KillBrowsers()
|
||||||
|
|
||||||
|
Sub KillBrowsers()
|
||||||
|
'Declare variables
|
||||||
|
Dim i
|
||||||
|
Dim wmiSvc,WQL,Processes,Process
|
||||||
|
Dim arrBrowserProcesses(7)
|
||||||
|
|
||||||
|
'Initialize variables
|
||||||
|
arrBrowserProcesses(0)="iexplore.exe"
|
||||||
|
arrBrowserProcesses(1)="chrome.exe"
|
||||||
|
arrBrowserProcesses(2)="firefox.exe"
|
||||||
|
arrBrowserProcesses(3)="safari.exe"
|
||||||
|
arrBrowserProcesses(4)="opera.exe"
|
||||||
|
arrBrowserProcesses(5)="iron.exe"
|
||||||
|
arrBrowserProcesses(6)="MicrosoftEdge.exe"
|
||||||
|
|
||||||
|
Set wmiSvc = GetObject("winmgmts:\\.\root\cimv2")
|
||||||
|
For i = 0 To UBound(arrBrowserProcesses)
|
||||||
|
wql = "SELECT * FROM Win32_Process WHERE Name='" & arrBrowserProcesses(i) & "'"
|
||||||
|
Set processes = wmiSvc.ExecQuery(wql)
|
||||||
|
Do While processes.Count > 0
|
||||||
|
For Each process In processes
|
||||||
|
process.Terminate
|
||||||
|
Next
|
||||||
|
WScript.Sleep 200
|
||||||
|
Set processes = wmiSvc.ExecQuery(wql)
|
||||||
|
Loop
|
||||||
|
Next
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
@ -48,11 +48,7 @@ LinkFolder_uninstall
|
|||||||
"$UninstallProgram$" /uninstall /silent
|
"$UninstallProgram$" /uninstall /silent
|
||||||
|
|
||||||
[Winbatch_killtasks]
|
[Winbatch_killtasks]
|
||||||
taskkill /F /IM iexplore.exe
|
cscript //b //nologo %ScriptPath%\browserkill.vbs
|
||||||
taskkill /F /IM iron.exe
|
|
||||||
taskkill /F /IM firefox.exe
|
|
||||||
taskkill /F /IM chrome.exe
|
|
||||||
taskkill /F /IM opera.exe
|
|
||||||
|
|
||||||
[Files_uninstall]
|
[Files_uninstall]
|
||||||
; Example for recursively deleting the installation directory:
|
; Example for recursively deleting the installation directory:
|
||||||
|
Loading…
Reference in New Issue
Block a user