I am working on a little side project that happens to be a smart client application and I have gotten around to working out how to deploy and update the application. I have used the Application Updater block in the past and it worked out well, but that is supposed to be replaced by ClickOnce in .NET 2.0. So I started looking into ClickOnce but didn’t really like what I found.
I don’t want to deploy the application directly from the web. I want to have the user download and install an .msi file (or execute it from a CD, etc). This gives me more flexibility into what is installed (I need to switch some resource file settings, etc). More importantly this application is targeted at people who are not very computer savy, so the extra warnings that come with ClickOnce web deployment would scare or confuse them. There are also some limitations around Firefox support (which have been partially alleviated, but still complicate things).
All I really want is something to perform automatic updates, and as far as I can tell there isn’t a way to use the ClickOnce automatic updates framework without deploying your application using ClickOnce.
This is where ClickThrough comes to the rescue. ClickThrough is an extension to the WiX toolkit that makes it very easy to update applications on the fly, similar to the Application Updater Block, but actually uses an RSS feed to check for updates! Its part of WiX v3 which means it is still under development, but I am going to give it a shot anyway.
I haven’t actually gotten it all working yet, but so far it looks very promising.
-James
