I have a registry key that can be equal to one of two values: a special value or null. And two features.
When my registry key has special meaning, the installer must install the first function. if the registry key is not found as a result of a registry search, the installer must install the second function. And if the registry key is null, the installer should not install any of these two functions.
What am I doing or misunderstanding? If INSTALLLEVEL = 5, SPECIALVALUE = "special", MYTREAT = "1", the first function must be installed, but the installer does not install both functions in this case.
<Feature Id="MyFeatures" Level="1" ConfigurableDirectory='INSTALLLOCATION' Display='expand' AllowAdvertise='no'> <ComponentRef Id='Empty'/> <Feature Id='First' Level='3' AllowAdvertise='no' ConfigurableDirectory='INSTALLLOCATION'> <Condition Level="0">INSTALLLEVEL=4 OR (MYTREAT="1" AND NOT SPECIALVALUE AND NOT SPECIALVALUE="")</Condition> <Condition Level="1">SPECIALVALUE="special" AND MYTREAT="1"</Condition> <ComponentRef Id="first_comp"/> </Feature> <Feature Id="Second" Level="4" AllowAdvertise="no" ConfigurableDirectory="INSTALLLOCATION"> <Condition Level="0">INSTALLLEVEL=3 OR (MYTREAT="1" AND SPECIALVALUE)</Condition> <ComponentRef Id="second_comp"/> </Feature> </Feature>
I changed my code, but it still does not work. Problem with the conditions. The registry key has a special meaning, but the installer still skips the first function. I found that the condition with "MYTREAT = 1" does not work. But in the logs, the client side sends the MYTREAT property with this value to the server. INSTALLLEVEL is 1. The MYTREAT property is initialized using the button control, maybe this is my problem? Here's the new code:
<Feature Id="Myfeatures" Level="3" ConfigurableDirectory='INSTALLLOCATION' Display='expand' AllowAdvertise='no'> <Condition Level='1'>MYTREAT="1"</Condition> <ComponentRef Id='Empty'/> <Feature Id='First' Level='3' AllowAdvertise='no' ConfigurableDirectory='INSTALLLOCATION'> <Condition Level="1">MYTREAT="1" AND SPECIALVALUE="SPECIAL"</Condition> <ComponentRef Id="first_comp"/> </Feature> <Feature Id="Second" Level="10" AllowAdvertise="no" ConfigurableDirectory="INSTALLLOCATION"> <Condition Level="1">(MYTREAT="1" AND NOT SPECIALVALUE)</Condition> <ComponentRef Id="second_comp"/> </Feature> </Feature> ............ <Dialog Id="TreatDlg" Width="260" Height="85"> <Control Id="Mytreat" Type="PushButton" X="50" Y="57" Width="56" Height="17" Property="MYTREAT"> <Publish Property="MYTREAT" Value="1">1</Publish> <Publish Event="NewDialog" Value="VerifyReadyDlg">1</Publish> </Control>
PS I initialized MYTREAT with 1 by default and the condition was evaluated correctly. Why can't I use a control property in a function state? And how to solve my problem! Please, help!
source share