I'm trying pass some parameters to an MSI from bootstrapper. Because I need MSI be able to display UI, but in basic varitant (/qb). At the moment I'm doing it the following way:
<ExePackage Id="Drv" DisplayName="Drv" SourceFile="..\redist\msiexec.exe" InstallCommand="/i setup.msi /qb>
<Payload SourceFile="setup.msi"/>
</ExePackage>
But I'd like not to take msiexec inside bootstrapper and do something like this:
<MsiPackage Id="Drv" SourceFile="setup.msi" DisplayInternalUI="yes">
<MsiProperty Name="CommandLineArg" Value="/qb"/>
</MsiPackage>
Is it possible to pass parameters to a msi without msiexec.exe?
Thanks