WiX - How to uninstall the bundle when uninstall the msi

前端 未结 3 908
花落未央
花落未央 2021-01-19 05:50

Im using WiX to install my .msi, I´m generating a WiX Bundle using the Bundle Element. I try to not show the Bundle on \"Add/Remove programs\" so i set the properties of the

3条回答
  •  爱一瞬间的悲伤
    2021-01-19 06:05

    To expand on Tom's answer, if you remove the Disables from your Bundle tag

    
    

    You can modify your MsiPackage tag to hide the MSI from Add/Remove Programs

      
    
        
    
      
    

    This will leave just one entry in Add/Remove Programs. Your Bundle will now handle the UI of the install and uninstall, and will correctly allow other versions of the bundle to be installed.

提交回复
热议问题