Library tutorials & articles
Visual Studio Installer
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.
Related articles
Related discussion
-
Problem with migration to C# (CoCreateInstanceEx)
by LRollison (1 replies)
-
VB6 Problem Creating Shortcuts
by rb1177 (0 replies)
-
how can i open a file
by kyawswarhtun (0 replies)
-
how to save any one form what i want?
by blackguy (5 replies)
-
Build an MP3 Player
by soybees (4 replies)
Related podcasts
-
Christian Beauclair
14 mai 2008 (�mission #0074) ::.Christian Beauclair: Stratégies de migration VB6 vers .NET Nous discutons avec Christian Beauclair des stratégies de migration VB6 vers .NET. Entre autres, nous discutons comment utiliser le "VB 6 Code Advisor" et le "Interop Forms Toolkit" pour ajouter la puiss...
Can anybody plz tell how to map the check boxes or radio buttons present in the user interface editor of setup wizard with some link so that only the desired features gets installed .....
How do I get the setup to check to see if MDAC, JET and DCOM are available on the target machine, install if required and then install the actual application?
I have found that the Installer has a setting to check for the INSTMSIA.exe file so it must be able to do other checks...
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 called during the call of this function.
If I have a custom action that I don't want to be called during the call of the function, is there a flag\property that I can use?
Thanks
-- Dafna
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 might be required for saving the path of the application in registry.
This thread is for discussions of Visual Studio Installer.