System error 1075 in connecting internet with LAN Line

Asked By 20 points N/A Posted on -
qa-featured

Hello,

I am using Windows XP Operating System and unable to use the LAN line to connect to the internet. It says an error 1075 : “ System error 1075 has occurred. The dependency service does not exist or has been marked for deletion. ” I guess this means that NetBT has to be set up which cannot be started.  

The solutions I have tried based on what I have read from other forums and services seem to not work. I have also tried to fix this on my own using Windows XP installer disk but it was unsuccessful. The Windows XP installer disk, however, allowed me to restore the system but it still did not work for the restore parts.  

All these have been checked in safe mode. Could anyone here help me resolve this error?

Thank you in advance. 

 
SHARE
Answered By 0 points N/A #91713

System error 1075 in connecting internet with LAN Line

qa-featured

"System error 1075 has occurred.

The dependency service does not exist or has been marked for deletion."
 
This system error might be caused by BROKEN WINDOWS MANAGEMENT INSTRUMENTATION (WMI) REPOSITORY.
 
The purpose of Windows Management Instrumentation (WMI) is to manage data and operations on Windows-based operating systems. Write WMI scripts or applications to automate administrative tasks on remote computers, also WMI supplies management data to other parts of OS and products, such as System Center Operations Manager, or Windows Remote Management.
 
To fix this error, I have here three options that you can do in case problems are experienced:
 
START >  ALL PROGRAMS > ACCESSORIES > COMMAND PROMPT
 
In the command line, type the words that is italicized after the bulleted bold words/phrase
 
Option A (FIX WMI REPOSITORY)
 
STOP WMI SERVICE
 
             net stop winmgmt
 
REBUILD THE REPOSITORY, by renaming the folder to something else as backup
 
              ren %windir%System32WbemRepository Repository_old
 
START WMI SERVICE
 
              net start winmgmt
 
REPAIR REPOSITORY (Windows XP)
 
              rundll32 wbemupgd, UpgradeRepository
 
REGISTER NEW WMI COMPONENTS
 
              cd /d %windir%system32wbem
 
               for %i in (*.dll) do RegSvr32 -s %i
 
               for %i (*exe) do %i /RegServer
 
REBOOT your computer for changes to take effect
 
If OPTION A didn't work, try OPTION B
 
Option B (COMPREHENSIVE REBUILD)
 
              rundll32.exe setupapi,InstallHinfSection WBEM 132 %windir%infwbemoc.inf
 
This command will ask for Windows XP installer disc.
 
Option C (Same error but with different problem)
 
The problem is WINDOWS FIREWALL service cannot be started/restarted or stopped.
 
RESET WINSOCK
 
            netsh winsock reset
 
OPTION C is for reference, in case you experience this problem.
 
I had this solution, and it worked. I hope this work to you as well.

Related Questions