Click here to Skip to main content
Licence 
First Posted 19 Sep 2005
Views 131,768
Downloads 348
Bookmarked 57 times

Steps for creating Custom Setup

By | 27 Sep 2005 | Article
If you ever thought creating a custom setup should be an easy task, here are the tips to break the ice.

Introduction

This is the article I wanted to find when I first began creating my custom setup. The information that I could find was broken in pieces and spread over the World Wide Web. I could only rely on parts of the algorithm and it took my precious time to figure out the actual business flow. That's why I finally decided to write this synthesis. The battle is in the custom actions and user interface sections. How do I configure a UI dialog and how can I hook the information entered in one of these dialogs to a piece of code that will do the custom configuration I want, based on this information?????

Here is an easy way to do this:

The main flow

Step 1

The best practice is to create a brand new assembly for creating personal customized steps while running the installer, namely InstallHelper-s.

Step 2

Choose your strategy:

Strategy 1

Create a console application project (I named it as InstallHelperVers1) and expect customized values in the args[] array of InstallHelperVers1 main entry point:

/// <SUMMARY>
/// The main entry point for the application.
/// </SUMMARY>
[STAThread]
static void Main(string[] args)
{
    string sz1 = args[0];
    string sz2 = args[1];

    Console.WriteLine("First option = " + sz1);
    Console.WriteLine("Second option = " + sz2);
}

Build the project and add it to the file system section. Add a custom action by choosing the InstallHelperVers1application. Open the Properties window of the newly added assembly and fill in the arguments section using "[" and "]" characters. The custom dialog field values are as follows:

where EDITA1 and EDITA2 are what you previously configured in the custom dialog textboxes in the Properties window at the Edit1Property and Edit2Property. You can leave the rest of the properties with their default values.

Results: While installing, InstallHelperVers1 will be executed with the mentioned arguments.

Strategy 2

Create a class library application project (I named it as InstallHelperVers2). Add a new item and choose an Installer class:

Override the OnBeforeInstall event or a more suitable event to serve your interest. Here is the MSDN example of how to do it:

using System;
using System.Collections;
using System.ComponentModel;
using System.Configuration.Install;

// Set 'RunInstaller' attribute to true.
[RunInstaller(true)]
public class MyInstallerClass: Installer
{
   public MyInstallerClass() :base()
   {
      // Attach the 'Committed' event.
      this.Committed += new InstallEventHandler(MyInstaller_Committed);
      // Attach the 'Committing' event.
      this.Committing += new InstallEventHandler(MyInstaller_Committing);

   }
   // Event handler for 'Committing' event.
   private void MyInstaller_Committing(object sender, InstallEventArgs e)
   {
      Console.WriteLine("");
      Console.WriteLine("Committing Event occured.");
      Console.WriteLine("");
   }
   // Event handler for 'Committed' event.
   private void MyInstaller_Committed(object sender, InstallEventArgs e)
   {
      Console.WriteLine("");
      Console.WriteLine("Committed Event occured.");
      Console.WriteLine("");
   }
   // Override the 'Install' method.
   public override void Install(IDictionary savedState)
   {
      base.Install(savedState);
   }
   // Override the 'Commit' method.
   public override void Commit(IDictionary savedState)
   {
      base.Commit(savedState);
   }
   // Override the 'Rollback' method.
   public override void Rollback(IDictionary savedState)
   {
      base.Rollback(savedState);
   }
   public static void Main()
   {
      Console.WriteLine("Usage : installutil.exe Installer.exe ");
   }
}

Expect customized values in the Context.Parameters.Keys array. Build the project and add it to the file system section. Add a custom action by choosing the InstallHelperVers2 application. Open the Properties window for the newly added assembly and fill in the CustomActionData section using the "[" and "]" characters to specify a field and a "/" character to specify each parameter. The custom dialog field values are as follows:

where e1 and e2 are the keys you address from your Installer class: string firstEdit = Context.Parameters["e1"];, and EDITA1 and EDITA2 are what you have previously configured in the custom dialog textboxes in the Properties window at the Edit1Property and Edit2Property, as you can see below:

If you want to see the parameters (typed or customized) that are available for use, use this code:

foreach (string keyValue in Context.Parameters.Keys)
{
  Console.WriteLine(keyValue + " = " + Context.Parameters[keyValue]);
}

It is highly important in this case to set the InstallerClass to TRUE. You can leave the rest of the properties with their default values.

Results: While installing, InstallHelperVers2 will be executed. Spot the Installer class and execute whatever is overridden in your Installer class.

Strategy 3

Repeat the steps from Strategy 2 with a few changes: Create InstallHelperVers3 as a simple Windows application project. Add an Installer class into this project. Forget all about setup dialogs and use the minimum possible dialogs in the setup project, the main and recommended ones are: Welcome dialog and installation folder dialog (and maybe customer information dialog).

For the rest of your customized steps, just follow the flow given below:

  1. Create a trycatch … transaction in your Installer class; use the catch section to rollback installation if everything goes wrong.
  2. Create a simple Windows Forms in your InstallHelper project that respects the setup main flow (Back and Previous buttons, Commit methods, etc.).
  3. Invoke these forms from inside the try section.
  4. Don't use any parameters when invoking this build during installation as you have transferred the whole business inside the InstallHelper.

Results: While installing, InstallHelperVers3 will be executed. Spot the Installer class and execute whatever is overridden in your Installer class, and that is your own setup flow.

That's it! As simple as that! From now on, use your imagination to complicate this scenario.

Good luck!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Gelu Vac



Romania Romania

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberRobert detoi21:13 26 Nov '11  
GeneralYour Artcle is very Difficult to Follow PinmemberVuyiswa Maseko2:16 22 Jan '09  
QuestionHow to Hide the setup when the Form1(Custom exe) is opened? PinmemberNagendran22:34 23 Dec '08  
GeneralThank Goodness! PinmemberD_Friendly_Bear19:12 22 Aug '07  
QuestionEnable/disable - Next/Back buttons on custom dialogs? PinmemberPreky2:51 19 Jul '07  
GeneralNeed Help for Custom dialog of 3 checknox button PinmemberPatel Pranav1:14 15 Feb '07  
GeneralRe: Need Help for Custom dialog of 3 checknox button PinmemberGelu Vac2:57 15 Feb '07  
QuestionCustom Actions without default installer class PinmemberJimDotNet3:51 19 Jul '06  
AnswerRe: Custom Actions without default installer class PinmemberDanieliw3:40 5 Jan '07  
GeneralSetup Project in VisualStudio.NET(2003) Pinmemberrishim2461:25 19 Mar '06  
QuestionHow to cancel (rollback) setup PinmemberKukurice3:43 6 Dec '05  
AnswerRe: How to cancel (rollback) setup PinmemberGelu Vac20:30 6 Dec '05  
GeneralRe: How to cancel (rollback) setup PinmemberKukurice3:50 13 Dec '05  
GeneralRe: How to cancel (rollback) setup Pinmemberabhinish1:40 2 Aug '06  
GeneralRe: How to cancel (rollback) setup PinmemberKukurice7:47 3 Aug '06  
AnswerRe: How to cancel (rollback) setup PinmemberJonCL9:05 3 Aug '06  
QuestionCommand line PinmemberKikoz6816:19 22 Oct '05  
Generalfew little problems PinmemberJosh Furcoat19:23 6 Oct '05  
GeneralRe: few little problems PinmemberGelu Vac22:12 6 Oct '05  
QuestionHow to validate serial number PinmemberPCKH19771:23 6 Oct '05  
AnswerRe: How to validate serial number PinmemberGelu Vac23:52 6 Oct '05  
GeneralRe: How to validate serial number PinmemberMukund Pujari22:11 18 Jan '06  
GeneralRe: How to validate serial number PinmemberGelu Vac20:47 19 Jan '06  
GeneralRe: How to validate serial number PinmemberMukund Pujari17:11 22 Jan '06  
GeneralRe: How to validate serial number PinmemberGelu Vac21:29 22 Jan '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 28 Sep 2005
Article Copyright 2005 by Gelu Vac
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid