HI All,
Is it possible to sequence a custom action before "LaunchConditions"?
This is my custom Action:
<CustomAction
Id="CA_vcAppRunning"
BinaryKey="vcShowMsg"
DllEntry="IsAppRunning"
Return="check"
Execute="immediate"/>
Sequenced in <InstallExecuteSequence/>
<Custom Action="CA_vcAppRunning" Before="LaunchConditions" />
I tried this, opened the msi in Orca and foud that my custum action is sequenced at "99". But when I tried to install it never got called.
I want to schedule this before LaunchConditions as this custom action is supposed to set a property which is used in the LaunchCodition. (If application is running exit the installer/updater).
Thanks, Rahul Muley