使用InstallUtil并以静默方式设置Windows服务login用户名/密码

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

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

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

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

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

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

布拉沃给我的同事(布鲁斯·埃迪)。 他find了一种我们可以做这个命令行调用的方法:

 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; } } } 

InstallUtil.exe设置StartupType =手动

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

sc config MyServiceName start= auto

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

不,installutil不支持。

当然,如果你写了一个安装程序, 用自定义的动作,那么你将能够使用它作为MSI的一部分或通过installutil。

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

在服务安装过程中会popup一个询问“[domain \] user,password”的popup窗口。

 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; ....