-
Hi, I upgraded my Wix3 projects to Wix v4 using Heatwave. I have 3 Projects in the Solution.
The Bundle EXE will use the OS Relevant MSI to Install. The Solution Compiles Fine. The MSI's are working fine. But the EXE Does not Show me anything. Seems it is not Running at all. FYI: I added the bal:DisplayInternalUICondition="yes" to the MSIPackage Elements for use in Wix v4. It compiles fine, but maybe it does not work this way. Regards This is the Bundle.wxs code
FYI : This is the Candle and Light Version I have on my computer (If that makes a difference) And the Solution Configuration Manager is ; And there are Multiple 'Debug' Folders;
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
DisplayInternalUICondition is a condition. To always show the MSI UI, use something like "1=1" or "not never" |
Beta Was this translation helpful? Give feedback.
-
The EXE doesn't show? Do you mean that the main bundle doesn't start? Or the MSI UI? |
Beta Was this translation helpful? Give feedback.
-
The log show failure on image id:
It isn't related to the MSI internal UI |
Beta Was this translation helpful? Give feedback.
-
Thanx to you guys. It works now. I am posting this, so it will benefit others who see this article.
Now it is working fine. Regards |
Beta Was this translation helpful? Give feedback.
@rseanhall @robmen @nirbar
Thanx to you guys. It works now.
I am posting this, so it will benefit others who see this article.
Firstly <MsiPackage bal:DisplayInternalUICondition="1=1".... as suggested by @nirbar works Good.
Secondly the link https://wixtoolset.org/docs/fourthree/faqs/ provided by @rseanhall leads to an article which has the link https://github.com/wixtoolset/wix4/tree/develop/src/ext/Bal/wixstdba/Resources which contains the HyperlinkTheme.xml & HyperlinkTheme.wxl files which I incorporated in my Upgraded Wix4 Bundle Project, by making some changes in accordance with what I had implemented in my Wix3 Project.
Now it is working fine.
Regards
@garevaul