开发者

Make an auto updatable VB.NET application

开发者 https://www.devze.com 2023-01-26 18:53 出处:网络
I have an application that is running fine. I just want to add the auto update feature in that application so t开发者_Python百科hat the application can automatically download the updates and install i

I have an application that is running fine. I just want to add the auto update feature in that application so t开发者_Python百科hat the application can automatically download the updates and install it on the computer.


The easiest way to do this is to make your application a ClickOnce application. It is a method of application deployment which has a very simple process for deploying new versions and having the client check for and install updates. Here is a CodeProject articles which has a full overview

  • http://www.codeproject.com/KB/install/QuickClickOnceArticle.aspx


It depends on how your application is structured and what kind of files you want to update.

But, basically, what you'll need is a "place" (like a WebService, for example), where your application will get the necessary info to update. Then it's downloading the necessary files and placing them in the correct folders.

I'd also advice you to write a new program, "updater", whose whole purpose it's to update your "main" program.

It's difficult to give you code on how to do this, as it it's more like a pattern that you'll have to implement.

Edit Also, as said by JaredPar, some platforms may provide tools to do this.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号