gpt4 book ai didi

installutil - 如何将参数传递给 installutil MyService.exe Parameter1 Parameter2

转载 作者:行者123 更新时间:2023-12-01 01:11:59 24 4
gpt4 key购买 nike

如何将参数传递给 installutil MyService.exe Parameter1 Parameter2

我 MyService 是一个 Windows 服务。我想将参数传递给这个服务。

最佳答案

覆盖 ProjectInstaller 类的安装方法

public override void Install(System.Collections.IDictionary stateSaver)
{
base.Install(stateSaver);
string lParam1 = Convert.ToString(GetParam("Param1"));

}

private object GetParam(string p)
{
try
{
if (this.Context != null)
{
if (this.Context.Parameters != null)
{
string lParamValue = this.Context.Parameters[p];
if (lParamValue != null)
return lParamValue;
}
}
}
catch (Exception ex )
{

}
return string.Empty;
}

并使用 安装服务installutil /Param1=value path_to_your_exename

关于installutil - 如何将参数传递给 installutil MyService.exe Parameter1 Parameter2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14930558/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com