Dea*_*ill 49 .net installer windows-installer windows-services
我需要使用InstallUtil来安装C#windows服务.我需要设置服务登录凭据(用户名和密码).所有这一切都需要默默地完成.
有没有办法做这样的事情:
installutil.exe myservice.exe /customarg1=username /customarg2=password
Run Code Online (Sandbox Code Playgroud)
小智 70
比上面的帖子更简单的方法,安装程序中没有额外的代码是使用以下内容:
installUtil.exe/username = domain\username/password = password/unattended C:\ My.exe
只需确保您使用的帐户有效.如果没有,您将收到"帐户名称与安全ID之间没有映射"的例外情况
Dea*_*ill 52
布拉沃给我的同事(布鲁斯艾迪).他找到了我们可以进行此命令行调用的方法:
installutil.exe /user=uname /password=pw myservice.exe
Run Code Online (Sandbox Code Playgroud)
它是通过在安装程序类中重写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;
}
}
}
Run Code Online (Sandbox Code Playgroud)
小智 5
InstallUtil.exe
设置StartupType = Manual
如果您想自动启动该服务,请使用:
sc config MyServiceName start= auto
(注意'='之后必须有空格)
归档时间: |
|
查看次数: |
70775 次 |
最近记录: |