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

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

问题描述

我正在使用 ServiceProcessInstallerServiceInstaller 类安装 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天全站免登陆