解决 ”Event filter with query "SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstan“

来源:互联网 发布:德州力拓软件 编辑:程序博客网 时间:2024/06/05 23:40

今天查看电脑日志时发现日志中有一个错误级别的日志,详情如下:

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.

现给出解决方案:
1. 建立一个名字为Workaround.txt的文档
2. 把下面的内容复制到刚建立的文档中

strComputer = "."Set objWMIService = GetObject("winmgmts:" _& "{impersonationLevel=impersonate}!\\" _& strComputer & "\root\subscription")Set obj1 = objWMIService.ExecQuery("select * from __eventfilter where name='BVTFilter' and query='SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA ""Win32_Processor"" AND TargetInstance.LoadPercentage > 99'")For Each obj1elem in obj1set obj2set = obj1elem.Associators_("__FilterToConsumerBinding")set obj3set = obj1elem.References_("__FilterToConsumerBinding")For each obj2 in obj2setWScript.echo "Deleting the object"WScript.echo obj2.GetObjectText_obj2.Delete_nextFor each obj3 in obj3setWScript.echo "Deleting the object"WScript.echo obj3.GetObjectText_obj3.Delete_nextWScript.echo "Deleting the object"WScript.echo obj1elem.GetObjectText_obj1elem.Delete_Next

3.将文档保存为Workaround.vbs
4.以管理员权限运行Workaround.vbs

其实这条日志可以被忽略……
参考地址:

https://support.microsoft.com/en-us/help/2545227/event-id-10-is-logged-in-the-application-log-after-you-install-service

阅读全文
0 0