Self updating application install with WIX?

后端 未结 3 836
心在旅途
心在旅途 2021-02-01 05:41

I am writing an application that needs to be installed on a large number of desktops and also needs to update itself. We are looking at WIX for creating the installation. I ha

3条回答
  •  生来不讨喜
    2021-02-01 06:15

    Windows Installer isn't really designed for "self updating" software. If you don't need MSI, or really need the application to "pull" it's own updates then use NSIS or some other tool and write your own updating routine/service.

    However if this is being installed on a large number of desktops within a single organisation, then the better solution would be to deploy an MSI via Active Directory. You can then "push" out updates using Group Policy. This is going to be much more robust than any application that updates itself.

提交回复
热议问题