Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 59,212 times

Contents

Related Categories

Visual Studio Installer - Visual Studio Installer

Visual Studio Installer

A free program from Microsoft, the Visual Studio Installer allows you to take advantage of this new technology for applications developed using Visual Studio. This program integrates with Visual InterDev,and is ideal for creating simple installations, with out costing the developer anything. It also provides a useful utility for importing Visual Basic projects, effectively making it possible to create a professional installation within a few minutes. We'll show you how here.

The Visual Studio Installer is available on the Windows 2000 Readiness Kit, which you can order for free from here.

Once you have installed the Visual Studio Installer (from here on referred to as VSI), run the program. You will then be greeted with the standard Visual InterDev New Project dialog. Click the Visual Studio Installer Projects under the Visual Studio folder, and create a new Visual Basic Installer Project. You will notice there is also an Empty Installer Project, which you could use, but it is usually far quicker to let VSI to select the correct components your application needs for you.

For this we obviously need a VB project. I recommend you just create a quick VB application that does absolutely nothing for the moment! Don't forget to compile the project to an EXE file. When the wizard starts, select a Visual Basic project you want to create a setup program for.

Below this path, you then have the choice whether to create an Installer or a Merge Module. An Installer is a stand-alone installation for an application, where as a Merge Module is an installation for a shared component. This can then be used in another Installer project that requires the component. In this case, leave the Create Installer option selected, and click Finish.

James first started writing tutorials on Visual Basic in 1999 whilst starting this website (then known as VB Web). Since then, the site has grown rapidly, and James has written numerous tutorials, articles and reviews on VB, PHP, ASP and C#. In October 2003, James formed the company Developer Fusion Ltd, which owns this website, and also offers various development services. In his spare time, he's a 3rd year undergraduate studying Computer Science in the UK. He's also a Visual Basic MVP.

Comments

  • Re: [64] Visual Studio Installer

    Posted by awp on 30 Mar 2007

    Trying to download Windows Installer from this page but the link behind the word 'here' doesn't work but I think it's at http://msdn2.microsoft.com/en-us/vstudio/aa718352.aspx

  • Conditional Installs

    Posted by bradleyw on 28 Sep 2005

    I have done a couple of installs to Win98 machines and have found various components missing as is quite common for '98.

    How do I get the setup to check to see if MDAC, JET and DCOM are available o...

  • calling MsiInstallMissingComponent

    Posted by uridafna on 08 Oct 2004

    Hi,



    I am calling the function MsiInstallMissingComponent from a wrapper to the msi to fix a missing components and I noticed that all the custom actions that are in the UI sequence table are c...

  • Not much info. about registry...

    Posted by jyotiraditya on 20 Nov 2002


    This article does not contain much information about how to handle registry.
    There is no information whether we can access some runtime informations like the application folder path or not .This mi...