程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> SQL Server 2005安裝過程中出現錯誤的解決辦法

SQL Server 2005安裝過程中出現錯誤的解決辦法

編輯:ASP.NET基礎
SQL Server 2005的英文RTM版我一個月前就下載了,到現在也沒裝上。
安裝過程中總是提示我“無法連接數據庫,不能對SQL Server進行配置”等等類似的信息。
我開始以為是我系統的原因,重裝了好幾次也不起作用。

今天終於找到了解決辦法,感謝Uestc95提供的這個方法。

把以下代碼保存為.bat文件運行即可。
復制代碼 代碼如下:
@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
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved