最近筆記本重覆了好幾次奇怪的現象,重啟後進入桌面,然後死機,木有藍屏。 後來在安全模式里查了事件,如下 日誌名稱: Application 來源: Microsoft-Windows-WMI 日期: 2017-11-11 22:08:41 事件 ID: 10 任務類別: 無 級別: 錯誤 關鍵字: ...
最近筆記本重覆了好幾次奇怪的現象,重啟後進入桌面,然後死機,木有藍屏。
後來在安全模式里查了事件,如下
日誌名稱: Application 來源: Microsoft-Windows-WMI 日期: 2017-11-11 22:08:41 事件 ID: 10 任務類別: 無 級別: 錯誤 關鍵字: 經典 用戶: 暫缺 電腦: longware-T430 描述: 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.
事件 Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="Microsoft-Windows-WMI" Guid="{1edeee53-0afe-4609-b846-d8c0b2075b1f}" EventSourceName="WinMgmt" /> <EventID Qualifiers="49152">10</EventID> <Version>0</Version> <Level>2</Level> <Task>0</Task> <Opcode>0</Opcode> <Keywords>0x80000000000000</Keywords> <TimeCreated SystemTime="2017-11-11T14:08:41.000000000Z" /> <EventRecordID>93359</EventRecordID> <Correlation /> <Execution ProcessID="0" ThreadID="0" /> <Channel>Application</Channel> <Computer>longware-T430</Computer> <Security /> </System> <EventData> <Data>//./root/CIMV2</Data> <Data>SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA "Win32_Processor" AND TargetInstance.LoadPercentage > 99</Data> <Data>0x80041003</Data> </EventData></Event>
百思不得其解,於是乎google,發現國內的帖子還木有,國外有幾個解決方法,內容如下。
建立一個 test.vbs 文件,貼入如下內容,保存,然後以管理員模式運行cmd,在cmd里執行test.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 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
目前木有出現死機,是否徹底解決,景觀後效。
備忘之。
GMT
選項 : 歷史 : 反饋 : Donate | 關閉 |