Project

General

Profile

WMI Corruption Issue

WMI Component corruption may leads to an unhandled exception that prevents Fingerprint generation ultimately leading to License Check Failure.

Fix (Run from an Elevated CMD Prompt)

cd C:\Windows\System32\Wbem

:: Recompile all MOF and MFL files
for /f %s in ('dir /b *.mof *.mfl') do mofcomp %s

:: Re-register all DLL files in the WBEM directory
for %i in (*.dll) do regsvr32 -s %i

:: Restart the WMI service
net stop winmgmt /y
net start winmgmt