WMI Error, after playing games.

Conleak

Distinguished
Dec 21, 2013
119
0
18,680
I keep getting a WMI error log along with a critical Kernel-Power event log, when my PC crashes whilst playing games.

I'm not quite sure what to show you because I don't understand the error.
But it's event ID: 10 and this is the message:

"Event filter with query "SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA "Win32_Processor" AND TargetInstance.LoadPercentage > 99" could not be reactivated in namespace "//./root/CIMV2" because of error 0x80041003. Events cannot be delivered through this filter until the problem is corrected."
 

Combatmed1

Honorable
Sep 17, 2013
174
0
10,760
Try this http://support.microsoft.com/default.aspx?scid=kb;en-US;2545227 copy the entire address into your browser.

OR

In a text editor, such as Notepad, create a new text document named Test.vbs.
Paste the following code into Test.vbs:
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\subscription")


Set obj1 = objWMIService.Get("__EventFilter.Name='BVTFilter'")

set obj2set = obj1.Associators_("__FilterToConsumerBinding")

set obj3set = obj1.References_("__FilterToConsumerBinding")



For each obj2 in obj2set
WScript.echo "Deleting the object"
WScript.echo obj2.GetObjectText_
obj2.Delete_
next

For each obj3 in obj3set
WScript.echo "Deleting the object"
WScript.echo obj3.GetObjectText_
obj3.Delete_
next

WScript.echo "Deleting the object"
WScript.echo obj1.GetObjectText_
obj1.Delete_


After you run this script, the Event ID 10 messages stop appearing in the Application log. However, you have to manually clear any previous Event ID 10 messages.

Note Make sure that you only delete the appropriate Event ID 10 messages. There may be other pertinent Event ID 10 messages that you do not want to delete.