vote up 6 vote down star
4

What are some good solutions for handling automatic web based software updates for windows forms projects? I am aware of microsoft one-click, but am not interested in it at this time.

flag
Can you share why ClickOnce won't work for you? The tool is good enough that you'll have a hard time finding anything that competes with it – Joel Coehoorn Oct 15 '08 at 18:20

5 Answers

vote up 0 vote down

I've also heard it called clicktwice :+> The WIX solution is more what I was interested in. Are there any sample applications (with source) for using this technique?

link|flag
I edited my answer to include a link to the tutorials. – Greg Dean Oct 15 '08 at 18:35
Building a system like this is not a small undertaking. I have done it, but never found a comprehensive tutorial. – Greg Dean Oct 15 '08 at 18:36
vote up 8 vote down

ClickOnce is good for cookie cutter stuff, but has some limitations around security (i.e. can't create a desktop icon, no access to COM, etc)

Assuming you are using MSI to install your application. Use WIX (http://wix.sourceforge.net/) to create a patch (.msp). You will want to look into Least Privileged User Account (LUA) Patching for Vista as UAC will screw you if you don't.

Then your application does the follows:

  1. Check for a new version via HTTP
  2. Download the MSP (be careful of where you DL it to in Vista because of UAC)
  3. Start a Shim exe that
  4. waits for your app to close
  5. launches the msp (in non-interactive mode)
  6. restarts your app

This can all happen automatically behind the scenes with zero user interaction on both XP and Vista.

A good place to start with this, and with WIX in general is:

http://www.tramontana.co.hu/wix/index.php (Lesson 4 is on Updates)

link|flag
I can create Desktop Icon with ClickOnce.... – Daok Oct 15 '08 at 18:43
not without hacking you can't (If the app is uninstalled, it's not removed) – Greg Dean Oct 15 '08 at 18:49
This sounds like a fantastic piece of software, and the documentation on tramontana.co.hu looks great. Nice post, gets my vote. – lb 10 hours ago
vote up 0 vote down

but ClickOnce is the best you can have and you can select if users need to download the new version, use the old ones, go back versions, etc...

you can always built your own solution, check the version number of a XML setting file in some web address, if it is newer than the current one, alter user to download the new version for example...

link|flag
vote up 1 vote down

Microsoft one-click? Do you mean ClickOnce? Click once for win form is very nice. Deployement is fast and all the update process is handled by itself.

link|flag
vote up 1 vote down

it really depends on how complex of an update process is needed.

I have had a few clients with simple needs where we created our own process setup that handled it, in about 3 hours of development we have a fully working solution that met all of their needs.

link|flag

Your Answer

Get an OpenID
or

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