与恢复操作安装Windows服务重新启动重新启动、操作、Windows

由网友(許丅的承诺,欠丅的债)分享简介:我使用了 ServiceProcessInstaller 和的ServiceInstaller 类安装Windows服务。I'm installing a Windows Service using the ServiceProcessInstaller and ServiceInstaller classes.我...

我使用了 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();
}
阅读全文

相关推荐

最新文章