Replies: 1 comment 2 replies
-
|
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am stuck trying to install a C++ Runtime prerequisite before I run the project msi file.
WiX is not recognizing the already installed VC Runtime and tries to install it. I am entering the arguments for the tag wrong. But I have not found any clear example of where to get the needed information.
Currently, I have this:
<ExePackage SourceFile="vc_redist.x64.exe"> <ArpEntry Id="Microsoft Visual C++ 2015-2022 Redistributable (x64) - 14.36.32532" Version="14.36.32532.0" Win64="yes"/> </ExePackage>
This information is directly from the Windows "Add/Remove product" page. But the log shows the following:
My workaround is to use a conditional variable defined through a registry search, as described in the (outdated) tutorial.
https://www.firegiant.com/wix/tutorial/net-and-net/bootstrapping/
Beta Was this translation helpful? Give feedback.
All reactions