Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WIX - auto update

Tags:

c#

.net

wix

I have a standalone setup project created with Wix. And I need some solution for auto-update my application. My application should check for a new version on startup and automatically download and install the new version if available.

What's the best solution to do this? Is there something like ClickOnce in Wix? ClickThrough seems to be dead, am I right?

like image 219
user1209216 Avatar asked Mar 05 '12 10:03

user1209216


2 Answers

Update: re clickthrough... as I type this, v3.6 has been released, 3.7 being the next version which is slated to be out shortly, and ClickThrough isn't dead but now slated for release in WiX 4.0 ref: See Robs comment 28th August.

like image 119
Fetchez la vache Avatar answered Sep 21 '22 11:09

Fetchez la vache


Here is a thread about updating an application: What is the best way to auto update a windows application?

Basically, you need an updater application or custom code and a distribution mechanism for your updates.

like image 33
rmrrm Avatar answered Sep 23 '22 11:09

rmrrm