tags:

views:

35

answers:

2

Hello,

I have a windows application developed in VB.net 2005. The application is installed in several machines.

Is there anyway when I do any modifications and publish the code it updates in all the machines.

PS: All the machines are connected to internet.

thanks

+1  A: 

There is not an "Automatic" way of doing this, but there are various ways that you could try to enhance and automate the process.

  1. You could build your own "updater" that polls every X days for an update, and pulls it down.

  2. You could use click once to deploy and have the users do the updates.

Mitchel Sellers
A: 

For an existing application, there's nothing automatic out there. For a new application, look into ClickOnce deployment.

Joel Coehoorn