I'm about to release a Beta version of an application and want to ensure that it can be updated remotely with users being notified in application that the update exists. Ideally I would like to force the update if possable. I am currently using InstallShield LE that's packaged with VS2010 to build my install exe file.
My plan is the create a wcf web service that will deliver an XML manifect of all product versions. What I'm not sure about is how to deliver the updates. The options I can think of are
- Deliver a new installshield installer - The installer is quite a bit larger than the program so once the program is installed, sending out the complete installer seems overkill.
- Send out just the msi file - I'm not sure how I go about creating an MSI installer within VS2010.
- Download the new application files (An exe an approx 7 10 Dlls) and replace the current files with the new ones.
Does anyone have a thought as to which option would be best and how to implement it? Will I need some kind of code signing and check at the client end for security?
Thanks for any help.
EDIT-Should have mentioned that ClickOnce is not an option. Mainly because it's not customisable enough to fit in with our look and feel. Also a few other issues with ClickOnce which I won't go into here.