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

     

  • 相关阅读:
    校验相关问题
    类型转换和操作符重载 (c#)
    泛型委托Func<string,string>()
    第三次作业 刘惠惠
    刘惠惠1.12
    第二次作业刘惠惠2.6,2.15
    刘惠惠1.8
    第四次作业 刘惠惠
    刘惠惠1.2
    设计模式中的单件模式
  • 原文地址:https://www.cnblogs.com/rickie/p/105909.html
Copyright © 2011-2022 走看看