zoukankan      html  css  js  c++  java
  • Windows Server 2016在服务器管理器仪表板中下载Maps Manager延迟启动红色

    https://interactivewebs.com/server-tips/windows-server-2016-download-maps-manager-delayed-start/

     ts kind of annoying to find that after a fresh install of Windows 2016 Server you have a service that fails to behave correctly.And it is because your MapsBroker stopped or never started to work. The good news for users of a system that ships in a state that throws an error is that the fix is quite simple. 

    全新安装Windows 2016 Server后,您的服务无法正常运行,这很烦人,这是因为您的MapsBroker停止或从未开始工作。对于处于抛出错误状态的系统用户而言,好消息是修复非常简单。 

    下载Maps Manager延迟启动

    When you click on the service, you will see something like this.

    当您单击该服务时,您将看到类似这样的内容。

    屏幕截图2017 08 02 22 40 27

    Even if you attempt to force a start, it does not resolve this issue.

    即使您尝试强制启动,它也不能解决此问题。

    The good news is that this service is really not something you want anyway if you have a windows server doing actual server functions.

    好消息是,如果您有Windows服务器来执行实际的服务器功能,则无论如何实际上都不需要此服务。

    The Fix 修复

    The simple fix is to disable this service. The easy way to do this is to:

    简单的解决方法是禁用此服务。执行此操作的简单方法是:

    Open Windows Powershell

    Be sure to open this by right clicking on PowerShell and select Execute as Admin. This is necessary even if you are logged in as an admin.

    确保通过右键单击PowerShell并选择“以管理员身份执行”来打开它。即使您以管理员身份登录,这也是必需的。

    Windows 2016 Server Power Shell

    Windows Powershell

    Type this command:

    Get-Service -Name MapsBroker | Set-Service -StartupType Disabled -Confirm:$false

    Enter 输入

    在Powershell中停用MapsBroker

    Problem is now fixed, and this annoying service is off and will not bother you again.

    现在,问题已解决,此烦人的服务已关闭,不会再打扰您。

  • 相关阅读:
    Codeforces Gym
    洛谷试炼场一句话题解
    优先队列板子
    BZOJ 3524 [POI2014] Couriers/洛谷3567(可持久化线段树)
    hdu 4417 Super Mario(可持久化线段树)
    poj 2559 Largest Rectangle in a Histogram (单调栈)
    zoj 4019 Schrödinger's Knapsack
    hdu 1521 排列组合(指数型生成函数板子)
    hdu 2072 单词数(普通型生成函数板子)
    RabbitMQ广播:direct模式
  • 原文地址:https://www.cnblogs.com/lili-lili-lili-lili/p/14366040.html
Copyright © 2011-2022 走看看