I am developing an MSI installer which includes a tool.exe file as a <Binary>
element. At some point during installation, i need to run the tool.exe.
So i have a custom action to execute it:
<CustomAction Id="RunToolExe"
BinaryKey="ToolExe"
ExeCommand=" -r 240 -name appservice"
Execute="immediate"
Return="check"
/>
Then i schedule in <InstallExecuteSequence>
Problem: When the custom action runs, a cmd line window flashes very fast during installation. This is a bit unconfortable for the user. Is there way to hide this screen?
I can't use WixQuietExecCA beacuse there is no way i can reference the Binary tool.exe in Wix.