Hi.
i want general idea about how to write the software update for an application?
which technology is simple like VC++ or .Net?..
i just need the idea in brief.
Hi.
i want general idea about how to write the software update for an application?
which technology is simple like VC++ or .Net?..
i just need the idea in brief.
In general a software update is applied with an updater program. Otherwise running copies of the program make it hard to patch.
Simplistically:
The following answer based on the assumption that you are refering to the auto-update for a software. Namely when launching your application you do a check to see if there is newer version available, and automatically download/install the new version if it is the case.
Microsoft ClickOnce is the simplest way if your application is .NET based. Here is a link that you can start with. It can be used with minimize effort.
An example of implementation from scratch using C++ can be found here.
All these kind of ideas needs to solve the following problems:
Note that for the step 4 it needs to close the running application and restart it after installation is done. This implies that you may have to do it in another process.