在安装期间将参数传递给 Windows 服务

Passing parameters to Windows Service during installation

我正在创建一个 windows 服务,它假设在特定 table 中查找数据,然后根据状态处理记录。

我想在使用 installutill 作为参数安装服务时传递数据库凭据,并将它们保存在注册表中。我尝试使用下面的代码这样做,但我在事件 "OnBeforeInstall".

上不断收到错误消息

我认为要么是我传递的参数不正确,要么是我在错误的事件中编写了代码。需要你的帮助来弄清楚我做错了什么。

protected override void OnBeforeInstall(IDictionary savedState)
{
    base.OnBeforeInstall(savedState);
    _eventLog.WriteEntry("OnBeforeInstall Started");
    try
    {
        RegistryKey key = Registry.CurrentUser.CreateSubKey(@"SOFTWARE\RyteRMS");
        if (key != null)
        {
            _eventLog.WriteEntry("Write data to registry key");
            key.SetValue("DBTYPE", this.Context.Parameters["dbtype"].ToString()); // This throws error, I am assuming as the above event entry is visible.
            key.SetValue("DATASOURCE", this.Context.Parameters["datasource"].ToString());
            key.SetValue("USERID", this.Context.Parameters["userid"].ToString());
            key.SetValue("PASSWORD", this.Context.Parameters["password"].ToString());
            key.SetValue("DBNAME", this.Context.Parameters["dbname"].ToString());
            key.Close();
        }
    }
    catch (Exception ex)
    {
        _eventLog.WriteEntry(ex.Message);
    }
    _eventLog.WriteEntry("OnBeforeInstall Finished");
}

我在命令提示符下写这个: installutil RMSBGService.exe /dbtype=sqlserver /datasource=hitin-lt /dbname=rms /userid=admin /password=passw0rd

错误: "Object reference not set to an instance of an object."

P.S。我不会调试Win服务,所以我用事件日志来记录一切。

我自己设法做到了,这就是我们应该做的。

protected override void OnBeforeInstall(IDictionary savedState)
{
    _eventLog.WriteEntry("OnBeforeInstall Started");
    try
    {
        RegistryKey key = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(@"SOFTWARE\RMS");
        if (key != null)
        {
            _eventLog.WriteEntry("Write data to registry key");

            Process _prc = new Process();
            _prc.StartInfo.FileName = "cmd.exe";
            _prc.StartInfo.UseShellExecute = false;
            _prc.StartInfo.RedirectStandardOutput = true;
            _prc.StartInfo.RedirectStandardInput = true;
            _prc.Start();

            ConsoleColor _color = Console.ForegroundColor;
            Console.ForegroundColor = ConsoleColor.DarkGreen;
            Console.WriteLine("\n\n");
            Console.WriteLine("PLEASE ENTER FOLLOWING DETAILS TO COMPLETE SETUP");
            Console.WriteLine("NOTE: if you enter wrong information, you will need to reinstall the application.");
            Console.WriteLine("\n\n");
            Console.WriteLine("Enter DBTYPE (SQLSERVER or ORACLE):");
            key.SetValue("DBTYPE", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
            Console.WriteLine("Enter DATASOURCE (SERVER NAME):");
            key.SetValue("DATASOURCE", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
            Console.WriteLine("Enter DATABASE USER ID:");
            key.SetValue("USERID", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
            Console.WriteLine("Enter PASSWORD:");
            key.SetValue("PASSWORD", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
            Console.WriteLine("Enter DATABASE NAME:");
            key.SetValue("DBNAME", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
            key.Close();
            Console.ForegroundColor = _color;
            _prc.Close();
        }
    }
    catch (Exception ex)
    {
        _eventLog.WriteEntry(ex.Message);
    }
    _eventLog.WriteEntry("OnBeforeInstall Finished");
    base.OnBeforeInstall(savedState);
}

StringCipher 是我用来 encrypt/decrypt 我的文本的自定义函数。稍后开始,我从注册表中读取这些存储的值,并将它们解密以将其传递给数据库连接代码并执行必要的操作。

希望这对某人有所帮助。

注意

您必须使用 "InstallUtil" 安装此服务,如果您选择使用安装项目安装它,此安装将卡住并打开 cmd window。