Windows XP wmi error

Joined
Feb 12, 2010
Messages
1
Reaction score
0
my computer is showing wmi error time and again what is the solution for this. Due to this I cant open internet explorer and I am continuing with fire fox mozilla.
 
Check and repair the WMI-Repository.
  1. Check: Open a DOS-Box, type at the command-prompt:

    C:\>wmic
    wmic:root\cli>cpu get /all

    Does an error message appear? If so, the wmi-database is corrupt.
    (%systemroot%\system32\wbem\repository\FS\...)
    Close the wmic with "exit"
    .
  2. Repair the wmi-database by deleting the folder. After that, Windows create the files again. Here are the commands (create a batch-file):

    sc config winmgmt start= disabled
    net stop winmgmt /yes
    c:
    cd %systemroot%\system32\wbem
    rd /s /q repository
    regsvr32 /s %systemroot%\system32\scecli.dll
    regsvr32 /s %systemroot%\system32\userenv.dll
    sc config winmgmt start= auto
    net start winmgmt
 
Back
Top