询问者
系统死机,每次从应用程序事件里查到的这个信息

问题
全部回复
-
你好,
请问是否在运行或进行某一特定的操作时电脑出现死机?
在事件查看器中是否还有其他事件产生?
从下面的文章里可以知道原帖描述的事件并不代表系统中的任何问题,可以安全地忽略。 但是,如果要防止生成这些事件,需要手动删除此特定的WMI注册。请尝试以下步骤。
1. 在文本编辑器(例如记事本)中,创建命名为 workaround.txt的新文本文档。
2. 将以下代码粘贴到 workaround.txt,然后另存为workaround.vbs:
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 obj1
set obj2set = obj1elem.Associators_("__FilterToConsumerBinding")
set obj3set = obj1elem.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 obj1elem.GetObjectText_
obj1elem.Delete_
Next
3. 选择“开始”,再选择“附件”,右键点击 “命令提示符”选择“以管理员身份运行”(提前将Workaround.vbs保存到以下目录:c:\用户\%username%)
4. 在命令提示符中输入cscript workaround.vbs 命令
运行此脚本后,事件 ID 10 消息不再出现在应用程序日志中。但是,您必须手动清除任何以前的事件 ID 10 消息。
Event ID 10 is logged in the Application log after you install Service Pack 1 for Windows 7 or Windows Server 2008 R2:(英文版)
https://support.microsoft.com/zh-cn/help/2545227/event-id-10-is-logged-in-the-application-log-after-you-install-servicePlease remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- 已建议为答案 Vera Hu 2017年12月13日 9:49
-
关于您在帖子中提到的问题有更新吗?或者需要我为您提供什么帮助吗?
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com. -
请问我们提供的建议是否对问题的缓解有所帮助,如果仍需要更多的协助,请回复帖子
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.