I use WiX to install a specific EXE file. I want the WiX installation to finish working with the EXE file (and not leave an open window), so I use:
<CustomAction Id="LaunchApp" FileKey="APPFileKey" ExeCommand="" Return="asyncNoWait" Impersonate="no" />
The only problem is that it launches the application with the current directory as the place where I run MSI .
And I need this application to run where the user wants to install it - this causes me a lot of problems. Is it possible to tell WiX where to launch a custom action?
source share