I created a .msi using the WiX Toolset, and it works fine. But the problem is when I want to run the .msi using WiX Bootstrapper project, it gives me the below errors in the log file.
Error 0x80070643: Failed to install MSI package. Error 0x80070643: Failed to execute MSI package. Error 0x80070643: Failed to configure per-machine MSI package.
Here is my WiX Bootstrapper bundle code snippet:
<Bundle Name="BootstrapperHelloWorld" Version="1.0.0.0" Manufacturer="Arifur Rahman" UpgradeCode="1dd53ea0-e19b-4e89-a85f-97ab912700d3">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
<Chain>
<MsiPackage SourceFile="D:\HelloWorld\BootstrapperHelloWorld\Prerequisit\HelloWorld.msi" />
</Chain>
InstallScope="perMachine"
attribute while creating the msi file. And use ForcePerMachine="yes" on bootstrapper MsiPackage Element . But still getting the error – Arifur Rahman