sql server 2005 WMI编译错误 解决方法

今天在安装sql server 2005是遇到错误,提示 :

"SQL Server Setup Failed to compile the Managed Object Format (MOF) file C:/Program Files/Microsoft SQL Server/MSSQL.1/MSSQL/Binn/etwcls.mof. To proceed, see "Troubleshooting an Installation of SQL Server 2005" or "How to: View SQL Server 2005 Setup Log Files" in SQL Server 2005 Setup Help documentation."

解决方案如下:

建立一个bat脚本,内容如下

net stop winmgmt
c:
cd %systemroot%/system32/wbem
rd /S /Q repository
 

regsvr32 /s %systemroot%/system32/scecli.dll
regsvr32 /s %systemroot%/system32/userenv.dll
 

mofcomp cimwin32.mof
mofcomp cimwin32.mfl
mofcomp rsop.mof
mofcomp rsop.mfl
for /f %%s in ('dir /b /s *.dll') do regsvr32 /s %%s
for /f %%s in ('dir /b *.mof') do mofcomp %%s
for /f %%s in ('dir /b *.mfl') do mofcomp %%s
echo DONE reboot
pause

posted on 2007-11-15 19:05  imgogogo  阅读(659)  评论(0编辑  收藏  举报

导航