JSI Tip 8692. Your Windows Server 2003 takes longer to start and you receive 'At least one service failed to start'?

Jerold Schulman

November 16, 2004

1 Min Read
ITPro Today logo in a gray background | ITPro Today

The subject behavior may occur because BITS (Background Intelligent TransferService) requires the EventSystem service. If BITS has any pending jobs, it is set to automatically start. If BITS starts before the EventSystem service, it tries to start the EventSystem service and waits for it to start, If the EventSystem service doesn't start within the timeout period, usually 80 seconds, BITS times out, and you receive the At least one of services failed to start message.

To workaround this behavior, add the EventSystem service to the BITS dependencies.

NOTE: In Windows Server 2003, you can use the SC.EXE (Service Control) utility to add the EventSystem to the existing rpcss dependency of the BITS service:

1. Log on with administrative privileges.

2. Open a CMD.EXE window.

3. Type sc config bits depend= rpcss/eventsystem and press Enter.

4. Type sc qc bits and press Enter to verify the BITS dependencies.

NOTES: See the following MSDN pages:

Background Intelligent Transfer Service.

Service Control Utility.

Service Control Manager.



Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like