Jump to content

SQL 2005 installations Probleme


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Recommended Posts

Hallo Zusammen

 

Habe auf einem windows 2003 server mit SP1 versucht SQL 2005 standart edition zu installieren. Es scheitert immer mit der folgenden Fehlermeldung.

 

The SQL Server System Configuration Checker cannot be executed due to WMI configuration on the machine Servername Error:2147749917 (0x8004101d)

 

Habe dan Tante google gefragt und die hat mir geraten die zwei folgenden patches laufen zu lassen.

 

%SYSTEMDRIVE%

CD %windir%\system32\wbem

Mofcomp.exe cimwin32.mof

Regsvr32 /s wbemupgd.dll

Regsvr32 /s wbemsvc.dll

wmiprvse /regserver

 

 

@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

 

 

Falls jemand das gleiche Problem hatte und es fixen konnte wäre ich um Eure Hilfe sehr Dankbar.

 

Gruss

 

Hirter

Link to comment
Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...