Skip to main content

FIXING WMI.

Fixing Broken WMI manually is always difficult & time consuming.

I have created one bath file which does all for me.

Here we go. copy following content in notepad & rename as .bat

net stop winmgmt
 c:
 cd %windir%\system32\wbem
 rd /S /Q repository
 regsvr32 /s %systemroot%\system32\scecli.dll
 regsvr32 /s %systemroot%\system32\userenv.dll
 mofcomp cimwin32.mof
 mofcomp cimwin32.mfl
 mofcomp rsop.mof
 mofcomp rsop.mfl
 for /f %%s in (’dir /b /s *.dll’) do regsvr32 /s %%s
 for /f %%s in (’dir /b *.mof’) do mofcomp %%s
 for /f %%s in (’dir /b *.mfl’) do mofcomp %%s
 mofcomp -n:root\cimv2\applications\exchange wbemcons.mof
 mofcomp -n:root\cimv2\applications\exchange smtpcons.mof
 mofcomp exmgmt.mof
 mofcomp exwmi.mof
 net start winmgmt
 

 

Note : Use on own risk.

Comments