In this article I am going to demonstrate how to customize your MSI install to prompt the user for some information and then pass this information to an installer class.  This can
be useful when needing to do something during an install based on the user input. 



There are two key parts to this process the first is the addition of a custom user interface dialog and the second is passing whatever information is entered into the new user interface  to the installer class in order to do something with this information
during installation.

For the sake of simplicity this MSI is going to install an assembly called MySampleAssembly and inside the project we will add an installer class that will take the information the
user enters via the newly added user interface and place this information into the event log.  (Once you get the information into the installer class you can do anything you want with it, we are placing it in the event log only to prove that the information
was successfully passed in)

This article assumes some basic understanding of MSI projects, more information can be found on at 



http://www.c-sharpcorner.com/Code/2002/July/BuildnDeployUsingVSNet.asp

Part One Adding a New User Interface



1. First start a new Set-up project.

2. Next we need to make the modifications to the default user interface settings.  Navigate to the view/Editor/User Interface as shown below.

This brings up the User Interface editor and displays the default MSI user interface.  You can see that this is broken up into a couple of different sections that are common to all
MSI setups.

3. Next you need to right click on the Start node of the tree view and choose the Add Dialog menu item as shown below:

This will bring up the Add Dialog menu displaying all of the various user dialogs you can add to the msi.  We are going to add 3 radio buttons to the default user interface that
prompts the user for his/her input in regards to what environment the application is being deploy into Dev, Test, or Prod.   This is common issue when building deployment scripts, as we may need to do different things based on the environment we are deploying
too.  Select the Radio Buttons (3 buttons) icon as shown below:

4. An icon representing the radio buttons user dialog should now be displayed in the user interface editor.   By right clicking on this icon and choosing the properties menu item
the default properties will be displayed for this user interface item.  Modify all the properties to look like the following:

An important thing to notice is the ButtonProperty that is currently set at BUTTON3.   This is the name of our newly added user interface item and ultimately the variable that holds
the value that the user has entered when the MSI is run.  In our case the screen we added contains three radio buttons and based on what the user chooses at the time of the install the BUTTON3 variable will hold a 1,2 or 3.

Part Two: Passing Information to the Installer Class.

5. Next we need to create a sample assembly and include an installer class in the project that will accept the information input by the user and do something with it.  The addition
of the installer class is the same as an earlier article I wrote with one key difference.  If you are not familiar with installer classed you can read an earlier article located here:

http://www.c-sharpcorner.com/Code/2002/July/UseInstClasses.asp

Creating The Sample Assembly

6. Create a simple assembly and call it mySampleAssembly.

7. Next right click on project name in the solution explorer and choose add new item and double click on the installer class icon.

8. Now navigate to the installer class and look at the code that is generated for you automatically. You need to override the Install function by adding the following code.



public override void Install(System.Collections.IDictionary
stateSaver)

{

string myPassedInValue=this.Context.Parameters["TEST"];

//1=DEV 2=TEST 3= PROD

System.Diagnostics.EventLog.WriteEntry

("Button3 value", myPassedInValue); 

}

This does nothing but get a value from the parameter named "TEST" and put it into the eventlog.

For the sake of simplicity leave all the other classes in the MySampleApp assembly alone and compile the assembly.  You will also need to add a using

9.  We now need to add this newly compiled assembly to our MSI project that we were working on earlier.  Go back to the MSI project we were working on earlier and click on the View/Editor/File
System, which will bring up the file system editor in the msi project.  Right click on the application folder and choose add/File as shown below.

Navigate to the MySampleApp assembly we just made and add it to the msi project.

10.  Next choose the View / Editor / Custom Actions menu item, this will bring up the custom action dialog menu as shown below.

Highlight the install folder and right click on the folder and choose Add Custom Action as shown below.

Navigate to the assembly we just added to the installer class and click ok as shown here.

This tells the MSI project to run any installer classes that is in the MySampleAssembly assembly.

Finally, choose the properties of the custom action and modify the properties as shown below.

Notice in the CustomActionData that we are placing a /TEST=[BUTTON3].  This tells the installer class to pass the value of the Button3 user interface object to the installer class
in a parameter named TEST.  In this particular case it is a 1, 2, or 3 that will be passed to the installer class but it could be anything from a database name to a server name that is passed to the installer class.

11.   Finally, compile and run the msi eventually you should see the new user interface and will place a 1, 2, or 3 into the event log based which radio button you chose.

In this article I demonstrated how to add a custom dialog to an MSI and take the information received from this newly added dialog and pass it into an installer class.  This can
be useful when creating MSI's that need to behave differently based on some user input.

Customize User Interfaces and Pass User Input to Installer Classes的更多相关文章

  1. MyBatis(3.2.3) - Passing multiple input parameters

    MyBatis's mapped statements have the parameterType attribute to specify the type of input parameter. ...

  2. ie8下修改input的type属性报错

    摘要: 现在有一个需求如图所示,当用户勾选显示明文复选框时,要以明文显示用户输入的密码,去掉勾选时要变回密文,刚开始想到的就是修改输入框的type来决定显示明文还是密文,使用jQuery的attr来做 ...

  3. Professional C# 6 and .NET Core 1.0 - Chapter 41 ASP.NET MVC

    What's In This Chapter? Features of ASP.NET MVC 6 Routing Creating Controllers Creating Views Valida ...

  4. C++ Core Guidelines

    C++ Core Guidelines September 9, 2015 Editors: Bjarne Stroustrup Herb Sutter This document is a very ...

  5. Getting Started with Django Rest Framework and AngularJS

    转载自:http://blog.kevinastone.com/getting-started-with-django-rest-framework-and-angularjs.html A ReST ...

  6. 【Python】Django RestFramework资料

    A ReSTful API is becoming a standard component of any modern web application.  The Django Rest Frame ...

  7. Effective Python2 读书笔记3

    Item 22: Prefer Helper Classes Over Bookkeeping with Dictionaries and Tuples For example, say you wa ...

  8. .net Framework Class Library(FCL)

    from:http://msdn.microsoft.com/en-us/library/ms229335.aspx 我们平时在VS.net里引用的那些类库就是从这里来的 The .NET Frame ...

  9. Using PL/SQL APIs as Web Services

    Overview Oracle E-Business Suite Integrated SOA Gateway allows you to use PL/SQL application program ...

随机推荐

  1. MYSQL注入天书之导入导出介绍

    Background-3 导入导出相关操作的讲解 load_file()导出文件 Load_file(file_name):读取文件并返回该文件的内容作为一个字符串. 使用条件: A.必须有权限读取并 ...

  2. .Net中DataGridview数据如何导出到excel表

    首先,这个问题在网上有很多答案,也有很多解决的方法.其次,很多人写过类似的博客 .我的这篇博客,主要是写给那些刚刚接触或接触不久.NET并使用其做程序的人,更是写个自己,记录一下方法,方便以后使用. ...

  3. 设计模式之State模式

    State模式定义: 允许一个对象在状态改变是,改变它的行为.看起来对象似乎修改了它的类. 模式理解(个人): State模式主要解决的事在开发中时常遇到的根据不同状态需要进行不同的处理操作的问题,而 ...

  4. <四边形不等式优化>[NOI1995]石子合并

    留个坑 挺套路的 明天来写个总结 #include<cstdio> #include<algorithm> inline int read() { int x = 0,f = ...

  5. JZYZOJ1378 [noi2002]M号机器人 欧拉函数

    http://172.20.6.3/Problem_Show.asp?id=1378日常懒得看题目怪不得语文差,要好好读题目了,欧拉函数大概是数论里最友好的了,不用解方程不用转换过来转换过去只需要简单 ...

  6. bzoj 2286(虚树+树形dp) 虚树模板

    树链求并又不会写,学了一发虚树,再也不虚啦~ 2286: [Sdoi2011]消耗战 Time Limit: 20 Sec  Memory Limit: 512 MBSubmit: 5002  Sol ...

  7. [UOJ336]无限之环

    题目的要求就是每个接头都有且仅有一个与其相连的接头,所以不妨给每个接头$1$的流量,对整个网格图黑白染色后(源点$\mathop\rightarrow\limits^\infty$黑点,白点$\mat ...

  8. Android Studio初级介绍

    Android Studio原来不咋地,但是现在可以尝试抛弃eclipse转用它了, 亲儿子到底是亲儿子,现在的Android Studio已经今非昔比,用了一段时间,简直爱不释手,我觉得,It's ...

  9. Excel | 如何用Excel实现证件照底色调换

    这段时间因为一些事情需要用到证件照这个东西,大家应该都清楚,不管是简历还是各种考试上面,都需要贴上一张规规矩矩的证件照片或是上传电子照片. 通常,我们到照相馆照证件照的时候,无外乎红底.蓝底以及白底这 ...

  10. WPF Interaction框架简介(一)——Behavior

    在WPF 4.0中,引入了一个比较实用的库——Interactions,这个库主要是通过附加属性来对UI控件注入一些新的功能,除了内置了一系列比较好用的功能外,还提供了比较良好的扩展接口.本文这里简单 ...