Is it possible to run a program when an installer starts up?
开发者_JAVA百科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.
Take a look at the CustomAction tag. You will want to use the ExeCommand
attribute to specify the exe you want to execute.
精彩评论