I need to install some .NET software on multiple PCs.
This software must be checked at each restart to see if a newer version exists on the server.
End users will have basic user rights and therefore cannot copy files to the Program Files directory.
If a newer version exists, the application closes, the updater copies the file from the server, and then restarts the application.
However, I wanted to create my own updater, so it will be application independent. That is, I sent an update identifier to indicate which application will be updated.
Then I wanted it to still work if the file server name was changed.
I think I can do all this using the service, with administrator privileges, to copy files.
- Is there a class that does this?
- Am I on the right track when I think about using an installed service?
Joe
source share