Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 58,959 times

Contents

Related Categories

Visual Studio Installer - Introduction

Introduction

The new Windows Installer is a new technology from Microsoft, allowing you to reduce the total cost of ownership (TCO) by providing an efficient way to install, maintain and remove applications. By now, you will probably have noticed setup programs using the .msi extension, which uses this technology. In essence, this file is a compiled databaese that stores the setup information, dialogs to use and the compressed binary files to be installed. When opened, the Windows Installer automatically reads the file, and initialises the setup program. Because Windows Installer provides common functions, such as copying, registering, or almost anything else needed, individual setup programs using the Windows Installer can be much smaller. However, it does require the Windows Installer to be already installed on the machine. This is already installed on Windows 2000 and Windows ME, and is available for Windows 95, 98 and NT via a service pack or download from the Microsoft site.

Office 2000 is one example of a program that uses the new Windows Installer technology, and provides several very useful features standard to Windows Installer including on-demand feature installation, application self-repair and installation rollback capabilities.

In this article, I will show you how to use the Visual Studio Installer, a free program from Microsoft for creating simple Windows Installer installations.

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...