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

     

  • 相关阅读:
    bzoj4028 [HEOI2015]公约数数列
    bzoj4766 文艺计算姬
    bzoj4241 历史研究
    bzoj3744 Gty的妹子序列
    bzoj4540 [Hnoi2016]序列
    uoj#228 基础数据结构练习题
    bzoj2467 [中山市选2010]生成树
    bzoj2125 最短路
    bzoj4800 [Ceoi2015]Ice Hockey World Championship
    bzoj2463 [中山市选2009]谁能赢呢?
  • 原文地址:https://www.cnblogs.com/rickie/p/105909.html
Copyright © 2011-2022 走看看