install error - WMI configuration
-
Monday, October 23, 2006 10:57 AM
TITLE: Microsoft SQL Server 2005 Setup
------------------------------The SQL Server System Configuration Checker cannot be executed due to WMI configuration on the machine HELEN_COMP Error:2147749890 (0x80041002).
For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft+SQL+Server&ProdVer=9.00.2047.00&EvtSrc=setup.rll&EvtID=70342
------------------------------
BUTTONS:OK
------------------------------How do i solve this???!!! Help!!!
All Replies
-
Monday, October 23, 2006 11:16 AM
I found this batch file and ran it and it fixed my WMI problems on SQL Server 2003. Copy this into notepad as save as fixwmi.cmd and then from a command line run c:\fixwmi.cmd.
It takes several minutes to complete and at points it appears that it is not running but it is. After it is complete, you see the :END statement start the SQL server installation again and you should be fixed.
FIXWMI.CMD
------------------------
@echo on
cd /d c:\temp
if not exist %windir%\system32\wbem goto TryInstall
cd /d %windir%\system32\wbem
net stop winmgmt
winmgmt /kill
if exist Rep_bak rd Rep_bak /s /q
rename Repository Rep_bak
for %%i in (*.dll) do RegSvr32 -s %%i
for %%i in (*.exe) do call :FixSrv %%i
for %%i in (*.mof,*.mfl) do Mofcomp %%i
net start winmgmt
goto End
:FixSrv
if /I (%1) == (wbemcntl.exe) goto SkipSrv
if /I (%1) == (wbemtest.exe) goto SkipSrv
if /I (%1) == (mofcomp.exe) goto SkipSrv
%1 /RegServer
:SkipSrv
goto End
:TryInstall
if not exist wmicore.exe goto End
wmicore /s
net start winmgmt
:End -
Monday, August 13, 2007 12:38 AM
Thank you very much helen_166 for posting this - after running this script as a result of many attempts to solve problems with the mofcomp command returning 0x80040154 errros, this script was able to fix the problem!!
Cheers

