Link to home
Start Free TrialLog in
Avatar of williamzNet
williamzNet

asked on

How Can I Deploy a VB.Net Project without Downloading Files?

I have created a visual basic 2010 project (an office add in) that I need to deploy on to several computers that are not connected to the internet.

If I try to run the installer it needs to download 2 files from Microsoft.  Is there any way of avoiding this? I don't mind downloading the files and installing them separately, but I don't know what they are.

Cheers!

Dave
Avatar of mwochnick
mwochnick
Flag of United States of America image

did you create a setup project as described in this document
http://msdn.microsoft.com/en-us/library/wx3b589t.aspx
here's an article on determining deployment dependencies
http://msdn.microsoft.com/en-us/library/8kche8ah.aspx

This document gives you an overview of VS 2010 deployment
http://msdn.microsoft.com/en-us/library/2kt85ked.aspx

This document has a list of walkthroughs of various deployment tasks for Visual Studio
http://msdn.microsoft.com/en-us/library/206sadcd.aspx

hope this helps
sorry that first link in my second post was for C++ apps pulled the trigger to quick - I'll get the correct on in  a moment
ASKER CERTIFIED SOLUTION
Avatar of mwochnick
mwochnick
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of williamzNet
williamzNet

ASKER

Hi mwochnick, thanks for the swift reply!!

The 3rd link on your 2nd post had the answer quite far down.  Hadn't found that doc before...

In case anyone else reads this, go into the solution property pages and make sure that the dependencies are set to be installed from the same source as the application.  It defaults to over the web...

Cheers,

Dave