如何在安装程序类中正确检索设置UILevel

时间:2011-09-23 02:11:02

标签: override custom-action silent-installer

我正在尝试遵循代码at this link,以便在我的安装程序类中确定安装程序是否以无提示方式运行。但我必须做错事,因为Context.Parameters [“UILevel”]似乎没有任何价值。

在我的安装项目中,我在Install上添加了一个自定义操作,我将/ UILevel =“[UILevel]”传递到CustomActionData字段。然后,我将此自定义操作链接到installer dll项目的主输出,该项目包含以下安装程序类:

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

namespace CustomActionLibrary
{
[RunInstaller(true)]
public partial class MyInstaller : Installer
{
    string uiLevelString = string.Empty;
    public bool IsSilentInstall
    {
        get 
        {
            if (!String.IsNullOrEmpty(uiLevelString))
            {
                int level = Convert.ToInt32(uiLevelString);
                return level <= 3;
            }
            else
                return false;
        }
    }

    public MyInstaller()
    {
        InitializeComponent();
    }

    public override void Install(IDictionary stateSaver)
    {
        base.Install(stateSaver);
        uiLevelString = Context.Parameters["UILevel"];
    }

    public override void Commit(IDictionary savedState)
    {
        //System.Diagnostics.Process.Start("http://www.google.ro?q=" + uiLevelString);
        if (IsSilentInstall)
        {
            //do stuff here if it's silent install.
        }
        base.Commit(savedState);
    }
    }
 }

我认为如果我在Install上添加自定义操作,我应该在Install覆盖中检索Context.Parameters [“UILevel”]。但Context.Parameters [“UILevel”]永远不会被填充。我也尝试在类的构造函数中检索它但它抛出nullref,并且在commit事件中,但仍然没有。

我怎样才能正确检索此值?

1 个答案:

答案 0 :(得分:0)

我解决了它,它正在AfterInstall事件处理程序上正确检索UILevel值。

    private void SecureUpdaterInstaller_AfterInstall(object sender, InstallEventArgs e)
    {
        uiLevelString = this.Context.Parameters["UILevel"];
        System.Diagnostics.Process.Start("http://www.google.ro?q=afterInstall_" + uiLevelString);
    }

这很有意义 - 它正在填充Install自定义操作的值,并在AfterInstall上检索它。