JSI Tip 10338. You receive Error 1075 when you attempt to start the DHCP Client service on Windows XP?

Jerold Schulman

March 30, 2006

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

When you start Windows XP, you notice that the DHCP Client service did not start. When you attempt to start the DHCP (Dynamic Host Configuration Protocol) service, you receive:

Error 1075: The dependency service does not exist or has been marked for deletion.

When this occurs, your System event log records an event similar to:

Event Type: ErrorEvent Source: Service Control Manager Event Category: None Event ID: 7003 Date: MM/DD/YYYYTime: HH:MN:SSUser: N/A Computer: Description: The DHCP Client service depends on the following nonexistent service: For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

This behavior will occur if an application adds itself to the DHCP Client service DependOnService Value Name during installation, and the application is subsequently improperly uninstalled, leaving the dependency, which is now a "nonexistent service".

NOTE: To determine if any other service is dependent on the nonexistent service, open a CMD.EXE window and run:

FOR /F "TOKENS=*" %s in ('DependOnService ') do @echo %s

To resolve this problem, you can reinstall, or repair the application, and then properly uninstall it, OR:

1. Use Regedit.exe to navigate to the HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesDhcp key.

2. Right-click the DependOnService Value Name and press Modify.

3. Click in the Value data area of the Edit Multi-String dialog to turn off the selection (highlighting).

4. Delete the line. This normally leaves the following lines:

TcpipAfd NetBt

5. Press OK and close Regedit.exe.

6. Shutdown and restart Windows XP.



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