您的位置:首页 > 数据库

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

2007-11-15 19:05 513 查看
今天在安装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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐