Wix V4 or V5 - .NET framework 4.x install with msi #8670
Unanswered
sampathy10
asked this question in
Questions
Replies: 1 comment 2 replies
-
The Windows Installer system has some locks around MSI installers. Only one is supposed to be active at a time, so using the MSI to install something which is potentially itself an MSI isn't advisable. The Bundle is the right way. You should just be able to have another wxs file for your bundle, with appropriate .NET reference for the version you want to install in the chain ... stuff for the bundle description, upgrade code, version etc
<Chain>
<!-- Our BA needs .NET 4.8, so make sure to include that as a prereq! -->
<PackageGroupRef Id="NetFx48RedistAsPrereq" />
<MsiPackage .... />
</Chain> |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I built msi installer using Wix V5. Now i am trying to install downloaded .net framework 4.8 runtime in the target machine if it is not available.
I tried to use bundle, but the installer GUI is belongs to bundle but not msi setup. I wanted to use MSI install GUI as primary and install .net runtime as dependent. I could not find enough documentation online to achieve this. Sample working code for my scenario using Wix 5 will be great help.
Beta Was this translation helpful? Give feedback.
All reactions