I have added a custom action using WixShellExec to open the log file after the finish dialog. Everything seems fine but the log file is displayed in the background. Is there any way to bring the log file to the top?
The Custom Action is:
<Property Id="WixShellExecTarget" Value="[MsiLogFileLocation]" /> <CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" Return="check" /> I also tried using the custom action in the post I can use WiX to launch my app at the end of install, but I can't get my app to run in the foreground but i can't find the FileKey attribute value for the Log file. Does anyone know it's value? Thanks in advance.