I have exe file and a need convert it to msi and install it using Group policy on more computer in domain without user interaction.
I found this tutorial https://stackoverflow.com/questions/19271862/wix-how-to-run-exe-files-after-installation-from-installed-directory/19274431#=
But this using UI, where user muset clicking to button. I need after install msi launch exe file and install to computer on the background - without any ui.
Is it possible? How.
Thanks for help.
As MSI installs usually follow Standard Installer Command-Line Options, you can use
/quietas an option to suppress the UI and the installer will just "do it".