How to execute Wix custom action after installation?

后端 未结 3 1187
余生分开走
余生分开走 2021-02-19 20:43

I am using Wix3 to install WCF service to IIS.

How can I use my custom action (c#) function after installation completed? i.e. I need to open installed web.config file a

3条回答
  •  [愿得一人]
    2021-02-19 20:50

    There is a sequence of Actions in Windows Installer. The WiX tutorial has a good section on events (and is a great resource anyway).

    A typical example of getting something to run after InstallFinalize is to get the installed app to start.

    
       NOT Installed
    
    

提交回复
热议问题