WiX installer should always run as administrator

前端 未结 3 1965
庸人自扰
庸人自扰 2020-12-31 05:51

I developed a custom installer with WiX for a .NET WPF application. It works fine if I right-click and run as administrator, however when running without, some components fa

3条回答
  •  被撕碎了的回忆
    2020-12-31 06:12

    For me I was supposed to run a registry command to delete a system environment variable via the CustomAction WiX element, which required administrator privileges.

    Using CustomAction → Impersonate="no" worked for me as mentioned in post https://stackoverflow.com/a/8657472/3205679.

    WiX Custom Action code:

    
    
    
          Installed AND NOT UPGRADINGPRODUCTCODE
    
    

提交回复
热议问题