Jump to content

Preventing App (IE) from opening


JBeardNC
 Share

Recommended Posts

When I'm updating Flash or Java for example, I am closing IE for the user beforehand and IE must remain closed as to not interfere with the install. I'd like to see if there is a (better) way to prevent them from opening IE during the middle of the update. Currently, I launch a separate process/script that simply does a While loop and every 50 ms, it checks for IE using WinExists and if it finds it, kills the process. But what ends up happening is if it closes the process at the right moment, the user will get a message that looks like a permissions error or an error like the IE shortcut doesn't exist and prompts the user to remove the shortcut and its causing some confusion. It may be because I have the 50 ms interval too small but I wanted to reach out and see if there is a better way to block an application from opening temporarily while something finishes, in this case, block IE while Java or Flash install completes. I tried using If ProcessExists and got the same results. Here's the script I'm using. Any better ideas? I just need to block IE from opening for about 30 seconds. If it has a notification (like the toast pop-up I added), that's even better but its not required. 

#include <toast.au3>

$sMsg  = "Adobe Flash is being updated on your computer." & @CRLF & @CRLF & "Internet Explorer will open once the update is complete."

sleep (2000)

While ProcessExists ("AdobeFlashUpdate.exe")
    sleep(50)
    If WinExists ("Internet Explorer") Then
        WinClose ("Internet Explorer")
        OpenToast()
    EndIf
WEnd

Func OpenToast()

    _Toast_Set(5, 0xFFFF33, 0x000000, 0xCC0000, 0xFFFFFF, 10)
    $aRet = _Toast_Show(0, "Please wait...", $sMsg, 10, False)
    ;_Toast_Hide()

EndFunc

Run ("C:\Program Files (x86)\Internet Explorer\iexplore.exe")

Exit
Link to comment
Share on other sites

Hi.

A group policy setting could be used to temporary disallow starting iexplore.exe:

gpedit.exe

- Computer configuration

-- windows settings

--- security settings

---- software restriction policies --> new software restricion policies

 

activate prior you launch your upate, remove afterwards.

 

Users will receive a message like "your admin disallowed ..."

 

Regards, Rudi.

Earth is flat, pigs can fly, and Nuclear Power is SAFE!

Link to comment
Share on other sites

Thanks for the idea but that won't work. It only needs to prevent it from opening for around 30-40 seconds while Flash or Java install. Plus, I don't want the user to receive any error message. If anything, I'd like for them to just see a message that another application is installing and IE will open when its complete.

Link to comment
Share on other sites

BlockInput might also be an option to think about.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...