My wix 3.5 setup can be downloaded and run in normal installation situation. I also use the same msi for updates and call msiexec with /qb (basic quiet interface) from within the app itself.

All is ok up to here. In normal setups, I have an option to start app upon install (taken from tutorial) and works fine.

<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Start $(var.AppName) $(var.ExeVersion) now..." />
<Property Id="WixShellExecTarget" Value="[#$(var.AppName).exe]" />
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" />

I want my update to be quiet and start the updated app after successfull install. In order to do this I have a custom action like this in my InstallExecuteSequence:

<InstallExecuteSequence>
  <RemoveExistingProducts After="InstallFinalize"/>
  <Custom Action="LaunchApplication"
          After="RemoveExistingProducts"/>
</InstallExecuteSequence>

This is also ok too, however obviously, now my app is automatically started with normal (not /qb) setups. In order to overcome this, I suppose I need to detect in which UILevel I am and run the custom action only in INSTALLUILEVEL_BASIC.

So here is my question: How can I detect the UILevel in InstallExecuteSequence or CustomAction? Or is there a way to run CustomAction only in quiet basic mode in Wix.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You should condition condition the custom action by UILevel = 3

link|improve this answer
I know but how do I condition it to uilevel 3 exactly? – Koray Balci Nov 7 '11 at 13:02
You can specify the condition in the text of the "Custom" element. – Ciprian Nov 7 '11 at 13:06
1  
thanks for the hint. Here is the working example for reference: <Custom Action="LaunchApplication" After="RemoveExistingProducts">UILevel = 3</Custom> – Koray Balci Nov 7 '11 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.