Hi everyone,

We're struggling with a performance issue on our bootstrapper application.
Depends on the target machine (all with the same configuration), the init phase 
(when "Initializing..." is displayed) can be quick or very, very long (up to 10 
minutes !!)

This is odd, because we have another bootstrapper for another app, and 
everything is fine...

We can't find anything about this on the mailing list, nor on google.

Here our wxs :

<?xml version="1.0" encoding="UTF-8"?>
<Wix
  xmlns="http://schemas.microsoft.com/wix/2006/wi";
  xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";
  xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>

  <?define version="5.0.0.0" ?>
  <?define UpgradeCode="{2B361216-3134-48D5-A0D3-FD12B47CF090}" ?> <!--Upgrade 
code to use for EVEN release version (NEVER CHANGE)-->
  <!--<?define UpgradeCode="{2D355C2C-2A27-4203-83EE-8BA1186E1629}" ?>--> 
<!--Upgrade code to use for ODD release version (ALWAYS CHANGE)-->

       <Bundle Name="TheApp" Version="$(var.version)" 
Manufacturer="TheManufacturer" UpgradeCode="$(var.UpgradeCode)" 
IconSourceFile="$(var.SolutionDir)Path\icon.ico">
             <BootstrapperApplicationRef 
Id="WixStandardBootstrapperApplication.RtfLicense">
      <bal:WixStandardBootstrapperApplication SuppressDowngradeFailure="no" 
SuppressOptionsUI="yes" ShowVersion="yes" 
LicenseFile="$(var.SolutionDir)TheApp\License.rtf"
                                              
LogoFile="$(var.SolutionDir)TheApp\icon.ico"/>
    </BootstrapperApplicationRef>

             <Chain>
      <PackageGroupRef Id="NetFx45Redist"/>
      <MsiPackage SourceFile="$(var.SolutionDir)ServiceSetup\ServiceSetup.msi" 
Permanent="yes" DisplayInternalUI="no" Visible="yes" />
      <MsiPackage SourceFile="$(var.MultipleReportMsi.TargetDir)TheApp.msi" 
Permanent="no" DisplayInternalUI="yes" Visible="no" />
    </Chain>
       </Bundle>
</Wix>

If anyone could help us or at least give us a hint on where to search, that 
would be great!

Thanks in advance,

Sébastien.
------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to