Hi, 

I created a bundle with a chained msi like below.
<Chain>
                        
      <MsiPackage Id="msi2" SourceFile="chain_msi2.msi"
DisplayInternalUI="yes" EnableFeatureSelection="yes"/>

</Chain>

first time installation i can select/deselect features in msi2.msi bcoz
DisplayInternalUI="yes" . But in the maintenance mode WixStdBA Displays as
Modify Setup text and at the bottom 3 buttons namely, Repair, Uninstall and
Close. Repair and Uninstall works perfectly. But no button for modifying the
features.

My present scenario is:
I have 2 features in msi2.msi. 
1. During first install, i had selected first feature only.(I can do this)
2. During modify i want to select the second feature.( I am not able to
this).

Please help me on this. It is working as expected in InstallShield. now i am
moving from IS to WiX.
I tried adding f msi1.msi with msi2.msi , didnt work, so only i commented
out.

My msi2.msi looks like this:
<wix ......................>

<Feature Id="ProductFeature1" Title="chain_msi2" Level="1"
Display="collapse" InstallDefault="local" TypicalDefault="install"
ConfigurableDirectory="INSTALLFOLDER">
                        <ComponentGroupRef Id="ProductComponents" />
                </Feature>
    <Feature Id="ProductFeature2" Title="chain_msi22" Level="1"
Display="collapse" Absent="disallow" AllowAdvertise="no"
ConfigurableDirectory="INSTALLFOLDER" InstallDefault="local"
TypicalDefault="install">
      <ComponentRef Id="testcomp22" />
    </Feature>
    <UIRef Id="WixUI_FeatureTree"/>
        </Product>

        <Fragment>
                <Directory Id="TARGETDIR" Name="SourceDir">
                        <Directory Id="ProgramFilesFolder">
                                <Directory Id="INSTALLFOLDER" Name="chain_msi2" 
/>
                        </Directory>
                </Directory>
        </Fragment>

        <Fragment>
                <ComponentGroup Id="ProductComponents" 
Directory="INSTALLFOLDER">
                        
                        
                                
      <Component Id="testcomp2"
Guid="{784e8890-120d-4cbc-b52a-858483b95f93}" KeyPath="yes">
        <File Id="testfile2" Source="testComponent21.txt" />
      </Component>
                        
                </ComponentGroup>
    <Component Id="testcomp22" Directory="INSTALLFOLDER"
Guid="{a88d8860-319b-424d-9be0-e661455eb3b7}" KeyPath="yes" >
      <File Id="file2" Source="testComponent22.txt" />
    </Component>
        </Fragment>
</Wix>

Any help would be grateful .

Regards,
Sampat



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WixStdBA-Does-not-allow-to-modify-the-chained-msi-features-in-maintenance-mode-tp7598178.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to