Reputation: 1
I'm currently using wix to write an installer. What I need it to do is to run a configuration tool once the installer starts. This tool relies on some DLLs. Is it possible to this? The configuration tool and DLLs will be in the binary table.
Upvotes: 0
Views: 62
Reputation: 17731
Take a look at the CustomAction tag. You will want to use the ExeCommand
attribute to specify the exe you want to execute.
Upvotes: 1