Recovery of WMI: Initialization failure error
WMI: Initialization failure error
Question | Does anyone know what could cause WMI: Initialization failure error to start happening:
| WMI: Initialization failure
| Login failed to machine "myserver".
| I noticed that recently that my backups started failing becuase of some| WMI errors, so I tried to connect to these problems servers via WMI CIM| Studio and this is the error that I get. I'm pretty sure whatever is| causing this error is also causing the error in the backups, and these| servers were working properly for quite a while (about two years), I| don't think aything has changed recently, and i know that the WMI| service is running on the servers that are triggering this error.
| I noticed that recently that my backups started failing becuase of some| WMI errors, so I tried to connect to these problems servers via WMI CIM| Studio and this is the error that I get. I'm pretty sure whatever is| causing this error is also causing the error in the backups, and these| servers were working properly for quite a while (about two years), I| don't think aything has changed recently, and i know that the WMI| service is running on the servers that are triggering this error.
Solution 1
- Press Winkey + R or start run & type services.msc & press enter
- Press Winkey + R or start run & type services.msc & press enter
- locate "Windows Management Instrumentation" service & stop it
- open command prompt (Press Winkey + R or start run & type cmd & press enter)
- open command prompt (Press Winkey + R or start run & type cmd & press enter)
- execute commands below
- execute commands below
- cd /d %windir%\system32\wbem
- cd /d %windir%\system32\wbem
- rd Rep_bak /s /q
- rd Rep_bak /s /q
- rename Repository Rep_bak
- rename Repository Rep_bak
- for %i in (*.dll) do RegSvr32 -s %i
- for %i in (*.dll) do RegSvr32 -s %i
- for %i in (*.exe) do call :FixSrv %i
- for %i in (*.exe) do call :FixSrv %i
- for %i in (*.mof,*.mfl) do Mofcomp %i
- for %i in (*.mof,*.mfl) do Mofcomp %i
- exit
- exit
- Press Winkey + R or start run & type services.msc & press enter
- Press Winkey + R or start run & type services.msc & press enter
- locate "Windows Management Instrumentation" service & start it
- locate "Windows Management Instrumentation" service & start it
Solution 2
Create a FIXWMI.CMD batch file from the below script and run it and see if this correctsyour problem.FIXWMI.CMD
------------------------@echo on cd /d c:\tempif 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
You might also like:
For data loss on iPhone/iPad/iPod Touch , iFoneMate iPhone data recovery software can be the useful tool to recover deleted/lost data from iPhone 6s/6/6plus/5s/5c/5/4s/4/3GS efficiently through three simple steps Scan-Preview-Recovery after three clicks.
Comments