在没有InstallUtil.exe的情况下安装.NET Windows服务

在没有InstallUtil.exe的情况下安装.NET Windows服务,第1张

在没有InstallUtil.exe的情况下安装.NET Windows服务

是的,这是完全可能的(即我完全可以做到);您只需要引用正确的dll(System.ServiceProcess.dll)并添加安装程序类即可

这是一个例子

[RunInstaller(true)]public sealed class MyServiceInstallerProcess : ServiceProcessInstaller{    public MyServiceInstallerProcess()    {        this.Account = ServiceAccount.NetworkService;    }}[RunInstaller(true)]public sealed class MyServiceInstaller : ServiceInstaller{    public MyServiceInstaller()    {        this.Description = "Service Description";        this.DisplayName = "Service Name";        this.ServiceName = "ServiceName";        this.StartType = System.ServiceProcess.ServiceStartMode.Automatic;    }}static void Install(bool undo, string[] args){    try    {        Console.WriteLine(undo ? "uninstalling" : "installing");        using (AssemblyInstaller inst = new AssemblyInstaller(typeof(Program).Assembly, args))        { IDictionary state = new Hashtable(); inst.UseNewContext = true; try {     if (undo)     {         inst.Uninstall(state);     }     else     {         inst.Install(state);         inst.Commit(state);     } } catch {     try     {         inst.Rollback(state);     }     catch { }     throw; }        }    }    catch (Exception ex)    {        Console.Error.WriteLine(ex.Message);    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5600061.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存