Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/02/2011, 07:04
Avatar de Snaft_J1
Snaft_J1
 
Fecha de Ingreso: diciembre-2006
Mensajes: 285
Antigüedad: 17 años, 9 meses
Puntos: 8
Respuesta: SQL Server 2008 Expres en Windows XP Profesional SP3

WMI debe estar instalado, pero al parecer esta corrupto o alguno de sus componentes.
Una solución para ello sería volver a instalar el servicio WMI. Esto puede hacerse mediante la creación de un archivo .bat con el siguiente script y luego ejecutarlo:

Código Batch:
Ver original
  1. @echo on
  2. cd /d c:\temp
  3. if not exist %windir%\system32\wbem goto TryInstall
  4. cd /d %windir%\system32\wbem
  5. net stop winmgmt
  6. winmgmt /kill
  7. if exist Rep_bak rd Rep_bak /s /q
  8. rename Repository Rep_bak
  9. for %%i in (*.dll) do RegSvr32 -s %%i
  10. for %%i in (*.exe) do call :FixSrv %%i
  11. for %%i in (*.mof,*.mfl) do Mofcomp %%i
  12. net start winmgmt
  13. goto End
  14.  
  15. :FixSrv
  16. if /I (%1) == (wbemcntl.exe) goto SkipSrv
  17. if /I (%1) == (wbemtest.exe) goto SkipSrv
  18. if /I (%1) == (mofcomp.exe) goto SkipSrv
  19. %1 /RegServer
  20.  
  21. :SkipSrv
  22. goto End
  23.  
  24. :TryInstall
  25. if not exist wmicore.exe goto End
  26. wmicore /s
  27. net start winmgmt
  28. :End

Espero te sirva.
__________________
-= El conocimiento y el saber te hacen un ser libre =-
Ando en busca de conocimiento....