I want to Execute an exe file say sample.exe by passing parameters using Bootstrapper. Problem is bootstrapper application fails to execute the exe. Any suggestions?
UPDATE:
I have a bat file containing:
start /d "D:\Setup\DBInstaller\bin\Release" DBInstaller.exe
and my code on Bundle.wxs is
<ExePackage Id="ExecuteScripts"
Vital="yes"
InstallCondition="RadioButton3 = 1"
Permanent="yes"
PerMachine="yes"
SourceFile="$(var.dir)ExecuteScripts.bat"
InstallCommand=""[WixBundleLastUsedSource]DBInstaller.exe" D:\Setup\DatabaseSettings.xml"
DetectCondition="true">
</ExePackage>
I am sending the path of an XML file as a parameter.
ERROR MSG : Invalid Function