Vista Event Log TargetInstance.LoadPercentage > 99


Recommended Posts

Ok, Ive been asked to fix a laptop with Vista 64bit. The laptop randmoly powers down completely, after looking in the event log i found the error,

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

There are two fixs,

1. http://support.microsoft.com/kb/950375

Create a new test document 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_

2.

run cmd.exe with administrative previlliges (right click on it as admin if you use UAC) and type

winmgmt /resetrepository

or

Go to control panel and open Administrative tools.

Double click on Services.

Go down to Windows Managament Instrumentation.

Stop this service. along with Security Center.

Exit out of this area to your desktop.

Open Windows Explorer.

Go down to c:\windows\system32\wbem\repository.

Delete the Repository Folder

Go back to Services and restart the WMI program

Then re-boot the computer

Anyone tried these ?

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.