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

Goran Malovic malovicg at yahoo.com
Fri Dec 11 08:13:09 PST 2015


It would be nice if you gave more details, like which method did you try (in provided link).
Did you try to distribute it compressed into your setup.exe? I have read somewhere that this is not legal, according to MS distribution license...
Or your setup will result in 2 exe files (setup.exe and framework_46.exe)?
If you did something like this:
<Chain>  <PropertyRef Id="NetFx46Redist" />  <MsiPackage .. /></Chain>

then you need to have following folder structure when you distribute your product:
setup.exeredist\NDP46-KB3045557-x86-x64-AllOS-ENU.exe (note the redist subfolder)
 


    On Friday, December 11, 2015 3:42 PM, Brian Enderle <brianke at gmail.com> wrote:
 

 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/
>

____________________________________________________________________
WiX Toolset Users Mailing List provided by FireGiant http://www.firegiant.com/


    


    On Friday, December 11, 2015 3:42 PM, Brian Enderle <brianke at gmail.com> wrote:
 

 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/
>

____________________________________________________________________
WiX Toolset Users Mailing List provided by FireGiant http://www.firegiant.com/


  


More information about the wix-users mailing list