[wix-users] Install the .NET Framework Using Burn with packaging the .NET Framework redistributable

Brian Enderle brianke at gmail.com
Fri Dec 11 06:41:54 PST 2015


Here is how I implemented offline installation of Crystal Reports in my
bootstrapper project (a copy of the Crystal Reports msi is in my project
directory):

    <Chain>

      <!-- Define the list of chained packages. -->
      <MsiPackage Id="CrystalReports"
                  SourceFile="CRRuntime_32bit_13_0_7.msi"
                  ForcePerMachine="yes"
                  Visible="no"
                  EnableFeatureSelection="yes"
                  DisplayInternalUI="yes" />

      <MsiPackage Id="MyProduct"
                  SourceFile="$(var.MyProductWiXSetup.TargetPath)"
                  ForcePerMachine="yes"
                  After="CrystalReports"/>

    </Chain>


You should be able to do the same, just replace the Crystal Report MSI with
the .NET MSI.

Brian

If you can't explain it simply, you don't understand it well enough.  -
Albert Einstein

On Fri, Dec 11, 2015 at 9:22 AM, Martin Cornelius <
Martin.Cornelius at datron.de> wrote:

> I'd like to produce a Managed Burn Bundle that can be installed without
> internet connection, and thus must
> contain the .NET 4.6 redistributable. I exactly followed the advice given
> here:
>
>
> http://wixtoolset.org/documentation/manual/v3/howtos/redistributables_and_install_checks/install_dotnet.html
>
> However, this does not work with WiX 3.10. According to the Installation
> Log, the Installer tries to download the redistributable, and gives up
> because this is not possible.
>
> Has anybody managed this with WiX 3.10 ?
>
>
> ____________________________________________________________________
> WiX Toolset Users Mailing List provided by FireGiant
> http://www.firegiant.com/
>


More information about the wix-users mailing list