【SQL】SQL Server 2005 RTM 安装错误 :The SQL Server System Configuration Checker cannot be executed due to-Server--2005-RTM-安装错误
欢迎您访问我爱IT技术网,今天小编为你分享的编程技术是:【SQL Server 2005 RTM 安装错误 :The SQL Server System Configuration Checker cannot be executed due to】,下面是详细的讲解!
SQL Server 2005 RTM 安装错误 :The SQL Server System Configuration Checker cannot be executed due to
昨天在安装SQL 2005 RTM的时候碰到了这样一个错误:Microsoft SQL Server 2005 Setup
------------------------------
The SQL Server System Configuration Checker cannot be executed due to WMI configuration on the machine XXXX Error:2147749896 (0x80041008).
For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.06&EvtSrc=setup.rll&EvtID=70342
------------------------------
BUTTONS:
OK
------------------------------
之前安装了N次都没有碰到,而机器也是干净的,新安装的英文Windows Server 2003 with lastest Patchs。错误信息里面的Link也没有提供任何可利用的信息。
从错误信息来看好像是WMI损坏了,于是Google一下,发现有一个解决方法:Re-installing WMI ,里面提到是因为更新2K3最新补丁造成的这个错误:The cause of this error is a corrupt install of WMI, caused by upgrading Windows Server 2003 to SP1 build 1277,虽然他针对的是CTP版本。但是发现根本不能运行。
我的2K3是SP1 build 1447,仍然出现这个错误。
幸运的是终于找到了一个Fix WMI的Script脚本,运行之后就好了:
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
如果你碰巧也遇到了这个问题,不妨看看能否解决?
关于SQL Server 2005 RTM 安装错误 :The SQL Server System Configuration Checker cannot be executed due to的用户互动如下:
相关问题:由于计算机pc-20130811Mstk Error:2147749907(0×80...
答:开始安装SQL Server 2005数据库过程出现了下面错误安装能继续进行: The SQL Server System Configuration Checker cannot be executed due to WMI configuration on the machine SI4P64LF3-05 Error:2147749907 (0x80041013). WMI配置出现了错... >>详细
相关问题:为什么我安装sql server的时候,在这一步下面不会...
答:一)右击 我的电脑—管理—展开服务和应用程序—展开SQL Server 配置管理器—在他里面找到这个MSSQLSERVER的协议,如下图 二)把已禁用的TCP/IP改成已启用, 三)这时就可以打开这个外围应用适配器,按下停止,然后再选择左边的启动,就可以啦。 情... >>详细
相关问题:sql 2008 2337错误2337怎么解决
答:我也碰到了,win7, 64位系统.解决方法,关闭防火墙.再试. 我关闭防火墙后报版本不一致! 后来发现我改了文件名.以前是SQLFULL_CHS,我改成SQL SERVER 2008,所以报错. 以前这个安装包我已经安装过两次,这次重装系统碰到这些问题,最后觉得是改了文件名... >>详细
- 【asp】asp.net url重写浅谈-net-url重写
- 【DataSet】DataSet、DataTable、DataRow区别详解
- 【asp】asp.net 动态添加多个用户控件-net-动态添
- 【ASP】ASP.NET中内嵌页面代码的一个问题-NET-内
- 【As】Asp.net中的页面乱码的问题-sp--pn-ne-et
- 【创建】ASP.NET Web API教程 创建域模型的方法详
- 【Asp】Asp.net 页面调用javascript变量的值-net-
- 【ASP】ASP.NET 5升级后如何删除旧版本的DNX-NET5
- 【404页面】ASP.NET设置404页面返回302HTTP状态码
- 【asp】asp.net开发中常见公共捕获异常方式总结(
- 评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)
-
