Wix 5.0 CustomAction #8765
Unanswered
abhisheksukk
asked this question in
Questions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to use customaction and we need to apply condition on component
CustomAction return INSTALL_CONDITION =1 based on condition
Component Id="MainAppl" Condition="INSTALL_CONDITION=1" //not working
When we apply this on Install Files , it works fine based on condition
InstallExecuteSequence
InstallFiles Condition="INSTALL_CONDITION=1" // This will skipped InstallFiles action and no components will install
InstallExecuteSequence
But I need to append more component and need to apply INSTALL_CONDITION on certain components
I also try to include UI sequence but no success
InstallUISequence
Custom Action ="CustomActionCall" Before="CostInitialize"
InstallUISequence>
Beta Was this translation helpful? Give feedback.
All reactions