shetty_rohan
Posts: 363
Joined: Fri Dec 07, 2012 5:28 am
Location: Bangalore, India
Contact: Website

Problem in lauching the application in Repair mode

Hi,

I have created a setup which would "launch application at the end of the installation" which is configured using the "ExitDialog". This is working fine in the installIi.e FirsttimeInstall).

But in Repair mode this checkbox "Launch Application" is hidden. I want this to be shown even in repair mode. How can I fix this?

Regards,
Rohan
Eusebiu
Posts: 4959
Joined: Wed Nov 14, 2012 2:04 pm

Re: Problem in lauching the application in Repair mode

Hi Rohan,

Please keep in mind that this is the default behavior.

If you want to make it visible you must follow the next steps:
- go in the Table Editor page
- select "ControlCondition" table
- set the following condition for the rows "ExitDialog->LaunchProdCheckBox" and "ExitDialog->LaunchProdText":

Code: Select all

((NOT AI_INSTALL) AND (NOT AI_PATCH) AND (NOT InstallMode="Repair")) OR ((CTRLS <> 2) AND (CTRLS <> 3))
- select the "ControlEvent" table
- set the following condition for the row "ExitDialog->Finish->DoAction->AI_LaunchApp":

Code: Select all

(RUNAPPLICATION=1) AND (AI_INSTALL OR AI_PATCH OR InstallMode="Repair")
Also, please keep in mind that our "Table Editor" feature is available only in an "Enterprise" or above license.

Let us know if it helped, otherwise give us more details about your scenario.

Best regards,
Eusebiu
Eusebiu Aria - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube
shetty_rohan
Posts: 363
Joined: Fri Dec 07, 2012 5:28 am
Location: Bangalore, India
Contact: Website

Re: Problem in lauching the application in Repair mode

Thank you, it worked fine.
Eusebiu
Posts: 4959
Joined: Wed Nov 14, 2012 2:04 pm

Re: Problem in lauching the application in Repair mode

You're welcome. I'm glad you got this working.

Best regards,
Eusebiu
Eusebiu Aria - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Building Installers”