I have created a bundle with "Three MSIs" , 

1. microsoft.interopformsredist.msi
2. VBagent.msi
3. .NETApp.msi

During Installation its working fine,below are issues that needs to fixed
during Uninstall and Re-Install

*1. To show the Splashscreen i have applied *"DelayStart"* for 5sec but its
not working.
2. During UnInstall, the VBagent.msi is not getting uninstalled  when we
uninstall the Master Package.
3. During Repair/Re-installation, the .NET Application is not showing the
Modify/Repair dialog box. *//

below are the code,

<Bundle Name="SoftWritersInstaller_Package" Version="1.0.0.0" 
          Manufacturer="SoftWriters"
UpgradeCode="86431df1-94cc-433a-9885-af19bca9b5d3"  DisableRepair="no"
DisableModify="button" IconSourceFile=".\Images\transparent.ico"
SplashScreenSourceFile=".\Images\IP_BG.jpg"  >
    
    
    *<Variable Name="DelayStart" Type="numeric" Value="5000" />*

    <BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.HyperlinkLicense">
      <bal:WixStandardBootstrapperApplication
        LicenseUrl=""
        xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";
SuppressOptionsUI="yes" LogoFile="logo.png" SuppressRepair="yes"  />
              
    </BootstrapperApplicationRef>
     
        
    <Chain DisableRollback="yes"  >
      
            
     <PackageGroupRef Id="Netfx4Full" />
      
      <PackageGroupRef Id="Netfx35sp1" />
      

      <MsiPackage Id="InteropService"
SourceFile=".\microsoft.interopformsredist.msi" Compressed="yes"
                  EnableFeatureSelection="yes" DisplayInternalUI="yes"
Vital="yes" Visible="yes">
        
      </MsiPackage>
                                   
      
      *<MsiPackage Id="FWLTC_VB_AGENT" SourceFile=".\VBagent.msii"
Compressed="yes" 
                  EnableFeatureSelection="yes" DisplayInternalUI="yes"
Vital="yes" Visible="yes" />
      
      <MsiPackage Id="FWLTC.Net" SourceFile=".\.NETApp.msi" Compressed="yes"  
                  EnableFeatureSelection="yes" DisplayInternalUI="yes"
Vital="no" Visible="yes"  />*
    </Chain>
    
  </Bundle>



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-Uninstall-and-Repair-not-working-tp7590029.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&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