I am developing an MSI installer that includes the tool.exe file as a <Binary> element. At some point during installation, I need to run tool.exe. Therefore, I have a custom action to execute it:
<CustomAction Id="RunToolExe" BinaryKey="ToolExe" ExeCommand=" -r 240 -name appservice" Execute="immediate" Return="check" />
Then I plan in <InstallExecuteSequence>
Problem: when performing a custom action during installation, the cmd window flashes very quickly. This is a bit inconvenient for the user. Is there any way to hide this screen?
I canβt use WixQuietExecCA beacuse, I just canβt reference the Binary tool.exe in Wix.
Herno source share