• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用恢复操作安装 Windows 服务以重新启动

用户头像
it1352
帮助1

问题说明

我正在使用 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?

正确答案

#1

您可以使用 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();
}

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfgiig
系列文章
更多 icon
同类精品
更多 icon
继续加载