Automatically updating the installer using WIX?

I have a standalone installation project created using wix. And I need some solution to automatically update my application. My application should check for a new version at startup and automatically download and install a new version, if available. What is the best solution for this? Can someone give me some examples? Thanks.

+4
source share
1 answer

If you use Burn as your bootstrapper / chainer (something that I definitely recommend when distributing MSI files over the Internet), you can create your own download application that implements the update mechanism. This updates the WiX toolkit. You can see the code in the WiX v3.7 branch (or later) in src\Setup\WixBA\UpdateViewModel.cs .

+4
source

Source: https://habr.com/ru/post/1469155/


All Articles