51

我需要使用 InstallUtil 安装 C# windows 服务。我需要设置服务登录凭据(用户名和密码)。所有这些都需要默默地完成。

有没有办法做这样的事情:

installutil.exe myservice.exe /customarg1=username /customarg2=password
4

5 回答 5

73

比上面的帖子更简单且安装程序中没有额外代码的方法是使用以下内容:

installUtil.exe /username=domain\username /password=password /unattended C:\My.exe

只要确保您使用的帐户是有效的。如果没有,您将收到“帐户名称和安全 ID 之间的映射未完成”异常

于 2010-05-19T08:54:30.247 回答
54

向我的同事(布鲁斯·埃迪)致敬。他找到了一种我们可以进行此命令行调用的方法:

installutil.exe /user=uname /password=pw myservice.exe

它是通过覆盖安装程序类中的 OnBeforeInstall 来完成的:

namespace Test
{
    [RunInstaller(true)]
    public class TestInstaller : Installer
    {
        private ServiceInstaller serviceInstaller;
        private ServiceProcessInstaller serviceProcessInstaller;

        public OregonDatabaseWinServiceInstaller()
        {
            serviceInstaller = new ServiceInstaller();
            serviceInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
            serviceInstaller.ServiceName = "Test";
            serviceInstaller.DisplayName = "Test Service";
            serviceInstaller.Description = "Test";
            serviceInstaller.StartType = ServiceStartMode.Automatic;
            Installers.Add(serviceInstaller);

            serviceProcessInstaller = new ServiceProcessInstaller();
            serviceProcessInstaller.Account = ServiceAccount.User; 
            Installers.Add(serviceProcessInstaller);
        }

        public string GetContextParameter(string key)
        {
            string sValue = "";
            try
            {
                sValue = this.Context.Parameters[key].ToString();
            }
            catch
            {
                sValue = "";
            }
            return sValue;
        }


        // Override the 'OnBeforeInstall' method.
        protected override void OnBeforeInstall(IDictionary savedState)
        {
            base.OnBeforeInstall(savedState);

            string username = GetContextParameter("user").Trim();
            string password = GetContextParameter("password").Trim();

            if (username != "")
                serviceProcessInstaller.Username = username;
            if (password != "")
                serviceProcessInstaller.Password = password;
        }
    }
}
于 2008-09-26T15:36:15.783 回答
4

InstallUtil.exe设置 StartupType=Manual

如果要自动启动服务,请使用:

sc config MyServiceName start= auto

(注意'='后面必须有一个空格)

于 2013-07-02T12:22:30.620 回答
0

不, installutil 不支持。

当然,如果您编写了安装程序;通过自定义操作,您将能够将其用作 MSI 的一部分或通过 installutil。

于 2008-09-26T15:05:58.757 回答
-2

您还可以使用ServiceProcessInstaller::Account = ServiceAccount.User强制您的服务以用户身份运行 ;

在服务安装过程中将出现一个询问“[域\]用户,密码”的弹出窗口。

public class MyServiceInstaller : Installer
{
    /// Public Constructor for WindowsServiceInstaller
    public MyServiceInstaller()
    {
        ServiceProcessInstaller serviceProcessInstaller = new ServiceProcessInstaller();
        ServiceInstaller serviceInstaller = new ServiceInstaller();

        //# Service Account Information
        serviceProcessInstaller.Account = ServiceAccount.User; // and not LocalSystem;
     ....
于 2009-10-23T14:31:37.910 回答