Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Google Chrome auto updates itself every five hours. I want to clone this exact functionality in my own application. What is the best way to implement this functionality on Windows?

share|improve this question
4  
Make it a webapp? :) – Michael Aaron Safyan Sep 13 '11 at 0:46
2  
Run your update code every 5 hours? – Mikhail Sep 13 '11 at 1:47
Let me know if I missed something in my answer. – Cosmin Pirvu Sep 24 '11 at 20:15
Very helpful, thanks! – John Shedletsky Sep 25 '11 at 2:50

5 Answers

up vote 26 down vote accepted
+200

To replicate this update behavior you need two things:

  1. An updater application which checks for updates regularly. If an update is found it should install it automatically. Most commercial setup authoring tools include good updater applications. You can try writing an updater yourself, but it's not as easy as it sounds.

  2. Per-user installations for each of your product versions. A per-user installation writes data only in the user profile folder (AppData, Roaming folder etc.) and HKEY_CURRENT_USER. No Program Files or HKEY_LOCAL_MACHINE.

Per-user installations are required so you can perform the upgrade silently. If the installation is per machine, newer Windows version will show the elevation prompt and the user won't know what's happening.

The Updater

Some updaters use services. For automated updates this isn't a real solution because service installation needs Administrator privileges. So your install process and subsequent updates would show elevation prompts.

Another approach is to use a per-user Updater application. It doesn't require any elevation and it can be installed in the application folder. This type of updater can run either as a scheduled task or from within your application (execute it when your application starts).

In both scenarios you need to consider that the Updater may need to update itself. So the process which performs the update must be a temporary process (for example a temporary copy of the updater application). It also should run without elevation. This is why a service is not such a good idea. It would need to stop itself before the update, use a temporary process which handles the update and start again when finished.

Other things to consider are:

  • permissions issues (if the update process needs any privileges or elevation)
  • download locations
  • update detection mechanism (how the Updater detects if a new version should be installed or not)

The updates

A common misconception is that updates should be the application files (like the main application EXE). This is rarely the case because an update may need to overwrite more than just a file.

Most updates are installation packages (MSI for example) or patches (MSP). This is the best approach because they handle the entire update logic:

  • detect running applications
  • update resources
  • update the product information (shortcuts, Programs and Features applet in Control Panel etc.)

Installation packages also simplify the Updater application. With this type of updates the Updater needs only to detect available updates, download them and execute them.

Updates works in two ways:

Windows Installer has great support for both of them, so you could use MSI packages and MSP patches. It also supports silent installations, so all your Updater needs to do is execute the package with a command line parameter.

These packages also support per-user or per-machine installations through ALLUSERS property.

Update distribution

After you decide on an Updater and some update packages, you also need a distribution mechanism:

  • a way to inform the updater that updates are available (for example an updates information file on your server)
  • a way to detect if an update is installed or not (so it's installed only once)

All of this is not very easy. This is why a lot of products use third-party Updaters. Even some commercial setup authoring tools offer Updaters for your packages.

A custom updater is mostly used by very large companies with a lot of products, because the investment is worth it for them.

share|improve this answer
6  
One comment: I would suggest avoiding a persistent updater program and use the task scheduler to run it at regular intervals instead. – Aaron Klotz Sep 23 '11 at 18:32
Great answer... but what about cross-platform needs? – John Nov 25 '11 at 16:26
Usually the client updater application is platform specific. So you need a different updater for each platform. The server part is the same for all platforms. – Cosmin Pirvu Nov 25 '11 at 20:26

If you want to have the exact same functionality, you can. Google has open-sourced it.

http://code.google.com/p/omaha/

share|improve this answer
now this I gotta try – Adam Caviness Dec 23 '11 at 18:44

Well, I've never done this before, but this is what I would do.

  1. I would set a timer to execute a method each 5 hours.
  2. That method would start a thread that would hit a specified url e.g. http://myapp.com/current_version.php
  3. The result would return an XML, String, or whatever you want
  4. If the version of your app is different from the one you've just got from the site then download the new viersion
  5. The final step would be to update your own application from the newly downloaded one, but this will depend on how you have designed your application

Hope this helps, and let me know how you are finally solving this :)

share|improve this answer

Interesting fact: Behind the scenes Google Chrome (and Google Earth IIRC) (ab)uses ClickOnce :)

share|improve this answer

Make sure to use SSL and properly validate all requests made by your updater, otherwise someone can easily hijack your updater to compromise the user's security.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.