Reputation: 35
I am creating an MSI installer for my software using WiX Toolset in Visual Studio 2022. One of the prerequisites for my software is MariaDB (available as an MSI file).
In my WiX installer, I am adding MariaDB as a prerequisite using the <MsiPackage>
element in a bootstrapper project. I set the DisplayInternalUI
attribute to yes
because I want the user to configure the installation location and set the root password via MariaDB’s UI dialog boxes. However, the MariaDB installer runs silently without displaying any dialogs.
Here’s the code I used for the MariaDB prerequisite:
<MsiPackage
SourceFile="path\to\mariadb.msi"
DisplayInternalUI="yes"
/>
As a side note, when I add Notepad++ as a prerequisite using the <ExePackage>
element, the dialog boxes are shown as expected:
<ExePackage
SourceFile="path\to\notepad++.exe"
/>
Both packages are included in the same bootstrapper project, but the behavior for the MariaDB MSI file is different. It installs silently, even though I specified DisplayInternalUI="yes"
.
Here are my questions:
Additional Information:
Upvotes: 0
Views: 24