views:

20

answers:

2

I am writing a Windows forms application to go between our other systems and our new software package that we are still setting up. I am doing an iterative development method because I am creating the tools as we find that we need them. My problem now is that when I publish a new change, we have to go to the workstations, log in as admin, and install this app. Being the process as it is, this just isn't feasible.

What other options do I for releasing this to the users? And how would I go about doing it?

I am using VS2008 and .NET 3.5

+2  A: 

Maybe you could use ClickOnce deployment.

Marcel Gosselin
A: 

I've used Web Update Wizard Which installs a service (which runs with admin rights) when you first install your app. Then when it updates, the service does the updating.

Neil N