close brwoser windows

This commit is contained in:
Mario Fetka 2015-11-18 21:44:14 +01:00
parent e81e235514
commit 5199bf6829
2 changed files with 39 additions and 9 deletions

View 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

View File

@ -64,6 +64,9 @@ else
Winbatch_install
Sub_check_exitcode
comment "Close the After Install browser window"
Winbatch_taskkill
comment "Copy files"
Files_install /32Bit
@ -75,18 +78,12 @@ else
endif
comment "Close the After Install browser window"
sleepSeconds 3
killtask "iexplore.exe"
killtask "iron.exe"
killtask "firefox.exe"
killtask "chrome.exe"
killtask "opera.exe"
[Winbatch_install]
"$InstallExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES /NOCANDY
[Winbatch_taskkill]
cscript //b //nologo %ScriptPath%\browserkill.vbs
[Files_install]
; copy the ini file to the InstallDir
copy "$IniCfgFile$" "$InstallDir$"