Click here to Skip to main content
6,295,667 members and growing! (13,998 online)
Email Password   helpLost your password?
Development Lifecycle » Installation » General     Intermediate License: The Code Project Open License (CPOL)

Deploy your Application or Component Using Windows Installer

By Prabhakar Manikonda

An article on creating setup programs without having the knowledge of setup scripts
Windows, .NET, Visual Studio, Dev
Posted:31 Jan 2006
Updated:3 Sep 2006
Views:78,927
Bookmarked:64 times
Unedited contribution
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
47 votes for this article.
Popularity: 5.60 Rating: 3.35 out of 5
7 votes, 14.9%
1
2 votes, 4.3%
2
3 votes, 6.4%
3
4 votes, 8.5%
4
31 votes, 66.0%
5
Title:       Deploy your Applications and Components Using Windows Installer
Author:      Prabhakar Manikonda
Email:       email2prabhakar@gmail.com
Environment: Visual Studio .Net 2003, Windows 32 bit Platforms.
Keywords:    Windows Installer, Deploying your application or component, Visual Studio .Net, Easy Setup Program
Level:       Intermediate
Description: An article on creating setup programs without having the knowledge of setup scripts.
Section      Software Deployment using Visual Studio Setup and Deployment
SubSection   Microsoft Visual Studio .Net 

Introduction

When ever we heard about deployment of our application or component we get scared with the traditional scripted setup programs. The main goal of this article is to make .NET programmers to get used to this easy to setup program which allows you to deploy your application even if you don't know how to write the setup script. Microsoft Dot Net Setup & Deployment will make the setup for you with simple clicks. It is also provided with self taught easy driven wizards. Many programmers who are using Microsoft Visual Studio Dot Net they are not fully aware of this windows installer that comes with Visual Studio; they are going for other setup programs that need's hard scripting knowledge. Using Windows Installer is very easy.

About Microsoft Windows Installer

Windows Installer enables you to deploy your Applications and Components in an efficient manner. The installer provides new capabilities to advertise features without installing them, to install products on demand, and to add user customizations. Windows Installer is an installation and configuration service that reduces the total cost of ownership. The installer enables customers to better address corporate deployment and provide a standard format for component management.

Run-Time Requirements

This technology is available as a redistributable for Windows Installer version 2.0, from the Microsoft Downloads.

Features of Windows Installer:

> It is based on a data-driven model that provides all installation data and instructions in a single package. In contrast, traditional scripted setup programs. > It also supports self-repair � the ability for an application to automatically reinstall. > It provides the ability to roll back an installation. The deployment tools in Visual Studio .NET build on the foundation of Windows Installer, providing you with rich capabilities for rapidly deploying and maintaining applications built with Visual Studio .NET. Creating your first Deployment Project Visual Studio provides templates for four types of deployment projects: Setup Project Builds an installer for a Windows-based application. Merge Module Project (.msm) is used to pack components that might be shared by multiple applications. Web Setup Project Builds an installer for a Web application. Cab Project (.cab) Creates a cabinet file for downloading to a legacy Web Browser In addition, a Setup wizard is provided to help step you through the process of creating deployment projects.
  • For a Setup project, the installer will install files into a Program Files directory on a target computer.
  • For a Web Setup project, the installer will install files into a Virtual Root directory on a Web server.
Note If you have created a standard deployment project and later decide to deploy it to a Web, you will need to create a new project.

Five Easy Steps:

Step 1

Open the Visual Studio IDE, and select File->New ->Setup and Deployment Projects. Select the Setup Wizard. Give the File name and location where to store that project as shown in the below figure.

Step 2

Welcome to Setup Project Wizard will appear. It is a simple Four Steps Wizard. Click on the Next Button. In the second step on the wizard it will ask the type of the setup. Choose appropriate here I has chosen setup for windows application and click Next.

Step 3

In the third step of this wizard it will ask to add your developed application or component and other files that you need to place in the clients machine, for example say documentation files

Now It will display as shown below figure.

Step 4

As you can see in above figure, The application folder is the folder where your application and supported files will be installed. User's Desktop and Programs Menu are the clients desktop and programs menus respectively. If Place the short files of your main application & Help files on the user's desktop and programs menu, then during the installation the application, supported files and the shortcuts will be placed automatically as you directed by placing the intended files in Application, User Desktop directories and programs menu.

We can use the following editors during the deployment of our application

You can find these editiors in the solution explorer each as a button as shown below,

File System Editor:

It allows you to add project outputs, files, and other items to a deployment project and specify where they will be installed on the target computer.

Registry Settings Management Editor:

Allows you to specify registry keys and values to be added to the registry of the target computer.

File Types Management Editor :

It is used to establish file associations on the target computer.

Custom Actions Management Editor

Allows you to specify additional actions to be performed on the target computer at the end of an installation.

Launch Condition Management Editor :

Allows you to specify conditions that must be met in order to successfully run an installation.

User Interface Management Editor

As shown in above figure, User InterfaceManagement Editor is used to specify and set properties for predefined dialog boxes that are displayed duging the installation on the target system.

The Customer Information Dialog is important to protect your software.

for that first set the Show SerialNumber property to true ( false by default).

there will be a template for the serial key called SerialNumberTemplate:-

Valid editable characters for the SerialNumberTemplate property are:

Character Meaning

#

Requires a digit that will not be included in the validation algorithm.

%

Requires a digit that will be included in the validation algorithm.

?

Requires an alphanumeric character that will not be included in the validation algorithm.

^

Requires an uppercase or lowercase character. Numeric digits are not valid here.

<

Any characters to the left of this character will not be visible in the dialog box.

>

Any characters to the right of this character will not be visible in the dialog box. Required as a terminator if the < character is used.

note that any other character is treated as a literal constant.

The Default template is <###-%%%%%%%>, Which create two text boxes separated by a dash surrounded by spaces.

The first has # which means that use must enter three numbers but those numbers will not be participating in the validation algorithm.

The Second box had seven digits,

% means that it will be involving in the validation. we apply modulo 7 to the sum of these required digits and if it equate to 0 algorithm returns true and the user can proceed to next dialog box.

Example:-

<###-%%%%%%%>,

124 - 7134501 is one of the key by which the user can proceed to next dialog box.

the first three digits 1, 2 and 4 can be any digits as they will not participate in validation.

the next seven digits 7134501 when you sum them you will get 21 and if you apply 21%7 you will get 0 so this is ok. Like wise you have to proceed.

You can add the dialog boxes like end user license agreement dialog and serial key dialog as shown.

Step 5

When you build the application, you will find the install program for your software or component in the projects debug directory.

Conclusion

I hope that many of the .Net developers who are using traditional setup script programs will find this as a easy and simple way to deploy your software. More than that if you got the licensed Visual Studio .Net with you then there is no need to purchase setup applications from other companies as Visual Studio .Net itself offers it for you. I think that I had given enough features of Windows Installer that comes with Visual Studio .Net. Now it's time that you try it just once to get used to it.

History

  • 1.0 - 13 Feb 2006
    • First release version.
    • 1.1 - 4 Sep 2006

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Prabhakar Manikonda


Member
Prabhakar Manikonda
MS CS, M.A Social Work, MCSD.NET, MCTS Sharepoint 2007
[Microsoft Certified Solution Developer in .Net]



Proven track record with seeing successful projects through to completion. Excellent team player and completer-finisher. Specialist in methodology, architecture,object-oriented design, and project management. Plan and manage workload, monitoring and resolving programming issues Transform requirements into architectural, Publishes white papres and articles in software development and runs software consulting & recruiting
Occupation: Software Developer (Senior)
Company: IBM RSA
Location: South Africa South Africa

Other popular Installation articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 44 (Total in Forum: 44) (Refresh)FirstPrevNext
GeneralCan I access the serial number after installation? PinmemberMember 345539816:30 24 Oct '08  
GeneralRe: Can I access the serial number after installation? PinmemberMitchellBaldwin10:49 8 Dec '08  
GeneralRe: Can I access the serial number after installation? PinmemberMember 34553983:50 11 Dec '08  
GeneralRe: Can I access the serial number after installation? PinmemberMitchellBaldwin5:17 11 Dec '08  
GeneralRe: Can I access the serial number after installation? PinmemberMember 34553989:00 11 Dec '08  
GeneralRe: Can I access the serial number after installation? PinmemberMartchap10:00 31 Jan '09  
QuestionHow to solve Login Fail? Pinmemberkhinezw1:23 20 Aug '08  
GeneralProduct Key Pinmembersonudevgan3:59 20 May '08  
GeneralRe: EULA (license agreement) Pinmemberpraveenkumar palla21:46 28 Mar '08  
GeneralRe: EULA (license agreement) PinmemberPrabhakar Manikonda3:01 8 Apr '08  
QuestionGet rid of .net framework PinmemberGabriel X8:04 20 Dec '07  
GeneralRe: Get rid of .net framework Pinmemberfadee1:55 12 Feb '08  
GeneralMy own Key PinmemberExelioindia21:32 3 Sep '07  
Questioncopy additional files during installation process ? PinmemberJatin Prajapati8:21 25 Aug '07  
Questionpath of .msi file PinmemberProsGIS5:26 21 Aug '07  
GeneralRe: path of .msi file Pinmembermaznblue5:26 3 Apr '08  
Generalwhat can i do,if i want use the serialnumber of myself? PinmemberWan--Vevi22:29 1 Aug '07  
QuestionRe: what can i do,if i want use the serialnumber of myself? PinmemberIvo8622:23 30 Sep '07  
GeneralThanks PinmemberMohamed Imtiyaz5:55 23 Jul '07  
GeneralHow to validate product code PinmemberRajkumar Reddy20:35 22 May '07  
Generalerror during install Pinmemberhar1137:48 2 May '07  
Generalsetup project Pinmembertbtrieu18:15 3 Apr '07  
GeneralRe: setup project Pinmembersonudevgan4:07 20 May '08  
QuestionICON for shortcut on the Desktop PinmemberEyungwah11:17 1 Feb '07  
AnswerRe: ICON for shortcut on the Desktop PinmemberPrabhakar Manikonda3:46 4 Feb '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 3 Sep 2006
Editor:
Copyright 2006 by Prabhakar Manikonda
Everything else Copyright © CodeProject, 1999-2009
Web11 | Advertise on the Code Project