...
Note |
---|
This will likely break Teamviewer QuickAccess so be sure to have physical access to the machine, or a client available to regain your access. |
Code Block |
---|
cd "%%systemroot%\system32\wbem" |
...
for /f %%s in ('dir /b /s *.dll') do regsvr32 /s %%s |
...
for /f %%s in ('dir /b *.mof') do mofcomp %%s |
...
cd en-GB |
...
for /f %%s in ('dir /b *.mfl') do mofcomp %%s |
...
cd .. |
...
regsvr32 wmisvc.dll |
...
cd "%%systemroot%\syswow64\wbem" |
...
for /f %%s in ('dir /b /s *.dll') do regsvr32 /s %%s |
...
for /f %%s in ('dir /b *.mof') do mofcomp %%s |
...
cd en-GB |
...
for /f %%s in ('dir /b *.mfl') do mofcomp %%s |
...
cd .. |
...
regsvr32 wmisvc.dll |
...
wmiprvse /regserver |
Potential Fix #2 - Hard Option
...