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.
|
4
|
|||
|
|
|
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? |
||
|
|
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:
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) |
||||||
|
|
|
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... |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
