Update project without installing again

S

Sheldon

Hi!

How do you update a project that's already installed on the user's machines?
In VB6, I would just overwrite the exe (when everyone was out of the
project) and it would change the program for all users.

Is there some comparable way in .Net? I'm running Visual Studio 2008.

Any help will be graciously accepted!
 
K

kimiraikkonen

Hi!

How do you update a project that's already installed on the user's machines?
 In VB6, I would just overwrite the exe (when everyone was out of the
project) and it would change the program for all users.

Is there some comparable way in .Net?  I'm running Visual Studio 2008.

Any help will be graciously accepted!

If your route would be same with overwriting the exe file again in
your .NET project, you can use:

My.Computer.FileSystem.CopyFile(source,destination, overwrite)

....and just set overwrite parameter to "True".

Hope this helps,

Onur Güzel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top