zoukankan      html  css  js  c++  java
  • Windows 2003 Server: Background Intelligent Transfer Service service hung on starting异常

    Windows 2003 Server: Background Intelligent Transfer Service service hung on starting异常

     

    Windows 2003 Server启动过程中,弹出某服务启动异常,通过eventvwr查看,在System日志中果然发现如下异常信息:

    The Background Intelligent Transfer Service service hung on starting.

    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

    ******

    在网上http://www.mcse.ms/message678167.html 发现了针对上述问题的解决措施:

    The problem you mentioned above is a known problem with BITS on Windows 2003.

     

    BITS on Server 2003 depends on the EventSystem service, which may not be started before BITS (race condition). To fix the problem, add EventSystem to the list of dependencies for the BITS service. This can be done using regedit.exe or reg.exe.

    1)方法一:使用reg.exe命令行

    The command line for reg.exe is:

    reg.exe add "HKLM\System\CurrentControlSet\Services\BITS" /v DependOnService /t REG_MULTI_SZ /d "Rpcss\0EventSystem" -f

    2)方法二:使用Regedit.exe手工修改注册表(我是通过方法二来解决上述问题的)

    Regedit.exe will launch the Registry Editor GUI.

     

    1. Browse to the registry key

    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\BITS.

    2. Right-click on the value "DependOnService" and click on "Modify"

    3. In the "Value data" text area type "EventSystem" on a new line below the line "Rpcss" and click Ok

    4. Close the Registry Editor

     

    Once you do this you will not see the problem you mentioned at the next reboot.

     

    Please be aware that modifying registry is dangerous if you don't know what you are doing. The reg.exe command below is the preferred way to do this.

     

    Reference:

    1. http://www.mcse.ms/message678167.html

     

  • 相关阅读:
    dubbo-admin 2.0安装部署
    一文多发神器
    springboot整合druid踩坑记录
    thymeleaf中的重定向的绝对路径问题
    路径问题
    sp_executesql介绍和使用
    java.net.UnknownHostException: api.weixin.qq.com解决办法
    调用百度地图示例
    浅析分布式架构
    城乡医保用户角色未分配修改
  • 原文地址:https://www.cnblogs.com/rickie/p/105909.html
Copyright © 2011-2022 走看看