安装数据服务SQL2005出错的问题解决方案
安装SQL2005时,弹出以下提示:
错误提示一:由于计算机上的WMI配置,无法执行Sql Server 系统配置检查器。(下图所示)
解决方法:
先建立一个文件名,文件名可以随意取,后缀名为CMD
如:建议一个文件名为WMI.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
运行WMI.CMD,等运行完成就可以了。
错误提示二:不能访问windows installer 服务,可能是你在安全模式下运行Windows,或者是windows installe没有正确地安装。请和你的支持人员联系以获得帮助
解决方法:
1、将以上文字复制到NOTEPAD中,存为installer.reg文件,执行。
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\MSIServer]
"ImagePath"=-
"ImagePath"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,\\
74,00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,\\
00,73,00,69,00,65,00,78,00,65,00,63,00,2e,00,65,00,78,00,65,00,20,00,2f,00,\\
56,00,00,00
2、重新启动机器至按F8到安全模式,开始运行,打cmd
3、输入:msiexec /regserver
重新启动,问题解决。
如解决不了,请联系三易通进销存软件|服装销售管理软件官网www.eeesoft.cn帮您提供帮助。