cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements

Who rated this post

L0 Member

We just solved this on my machine by creating a batch script out of the following.

 

net stop winmgmt /y

%SYSTEMDRIVE%

CD %windir%\system32\wbem

rd /S /Q repository

net start winmgmt

for /f %%s in ('dir /b /s *.dll') do regsvr32 /s %%s

for /f %%s in ('dir /b *.mof') do mofcomp %%s

 

Run that, restart, and there you go.

Who rated this post