Hi,

When I added more installers to my configuration file (Bundle.wxs) it breaks
the installer. Intially I was having only .msi packages only and it worked
fine.

Is this the way to run several msi packages and exe files in a Bundle.wxs.
 I might be doing something really bad here:

-Orlando.

--
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
  <Bundle Name="My Installer"
          Version="1.5.0"
          Manufacturer="Orlando Ramirez"
          UpgradeCode="796959e1-9171-4878-989d-710550b0c55a"
          IconSourceFile="..\setup\_files\i_installer.ico"
          >

    <BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.RtfLicense" />
    <WixVariable Id="WixStdbaLicenseRtf" Value="..\setup\_files\license.rtf"
/>
    <WixVariable Id="WixStdbaLogo" Value="..\setup\_files\logo.png" />


    <Chain>

      <MsiPackage
        SourceFile="..\Installer_x32\bin\Debug\Installer_x32.msi"
        InstallCondition="NOT VersionNT64 AND VersionNT = v5.1"
        />

      <MsiPackage
        SourceFile="..\Installer_x64\bin\x64\Debug\Installer_x64.msi"
        InstallCondition="VersionNT64 AND VersionNT >= v6.0"
        />

      <MsiPackage
        SourceFile="..\i_win7_x32\bin\Debug\i_win7_x32.msi"
        InstallCondition="NOT VersionNT64 AND VersionNT >= v6.0"
        />


      <ExePackage
       SourceFile="..\Installer_x32\_files\setup-i386.exe"
       InstallCondition="NOT VersionNT64 AND VersionNT = v5.1"
        />

      <ExePackage
        SourceFile="..\Installer_x64\_files\setup-x64.exe"
        InstallCondition="VersionNT64 AND VersionNT >= v6.0"
        />

      <ExePackage
        SourceFile="..\i_win7_x32\_files\setup-win7.exe"
        InstallCondition="NOT VersionNT64 AND VersionNT >= v6.0"
        />


      <PackageGroupRef Id="Bundle.Generated.Packages"/>
    </Chain>
  </Bundle>
</Wix>

--

-- 
ing. Javier Orlando Ramírez Martínez
http://linux.mty.itesm.mx/~oramirez
http://picasaweb.google.com/javier.ramirez
http://twitter.com/oramirez1
http://flickr.com/photos/orlando1
------------------------------------------------------------------------------
Doing More with Less: The Next Generation Virtual Desktop 
What are the key obstacles that have prevented many mid-market businesses
from deploying virtual desktops?   How do next-generation virtual desktops
provide companies an easier-to-deploy, easier-to-manage and more affordable
virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to