与恢复操作安装Windows服务重新启动 [英] Install Windows Service with Recovery action to Restart

查看:520
本文介绍了与恢复操作安装Windows服务重新启动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用了 ServiceProcessInstaller 的ServiceInstaller 类安装Windows服务。

I'm installing a Windows Service using the ServiceProcessInstaller and ServiceInstaller classes.

我已经使用了 ServiceProcessInstaller 设置起始类型,名称等,但我怎么设置恢复操作,以重新启动?

I've used the ServiceProcessInstaller to set the start type, name, etc. But how do I set the recovery action to Restart?

我知道我可以做的业务是通过将服务管理控制台和更改服务的属性的恢复选项卡上的设置安装后手动,但有在安装一个办法做到这一点?

I know I can do it manually after the service is installed by going to the Services management console and changing the settings on the recovery tab of the service's properties, but is there a way to do it during the install?

推荐答案

您可以通过设置恢复选项 SC 。下面我们来设置该服务在失败后重新启动:

You can set the recovery options using sc. The following will set the service to restart after a failure:

sc failure [servicename] reset= 0 actions= restart/60000

这可以很容易地从C#中调用:

This can easily be called from C#:

static void SetRecoveryOptions(string serviceName)
{
    int exitCode;
    using (var process = new Process())
    {
        var startInfo = process.StartInfo;
        startInfo.FileName = "sc";
        startInfo.WindowStyle = ProcessWindowStyle.Hidden;

        // tell Windows that the service should restart if it fails
        startInfo.Arguments = string.Format("failure \"{0}\" reset= 0 actions= restart/60000", serviceName);

        process.Start();
        process.WaitForExit();

        exitCode = process.ExitCode;
    }

    if (exitCode != 0)
        throw new InvalidOperationException();
}

这篇关于与恢复操作安装Windows服务重新启动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆