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

 

posted @   Rickie  阅读(3916)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
点击右上角即可分享
微信分享提示