Error 0x80041003. Events cannot be delivered through this filter until the problem is corrected. hatası

hakan (15424) 10 yıl önce sordu

Windows 7 bilgisayarım açılırken veya kapanırken aşağıdaki hata mesajını alıyorum:

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.

Error 0x80041003. Events cannot be delivered through this filter until the problem is corrected.  hatasını nasıl çözerim?

Toplam 2 cevap


hakan (15424) 10 yıl önce cevapladı

Error 0x80041003. Events cannot be delivered through this filter until the problem is corrected. hatasını çözmek için aşağıdaki işlemleri yapmalısınız.

  1. Başlata gelin arama kotusuna Notepad yazın ve enter tuşuna basın.
  2. Not defterine aşağıdaki kodu yapıştırın.
    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_
  3. Dosya > Farklı Kaydet'e gelin.
  4. Kayıt türünü "Metin Belgeleri *.txt" den Tüm Dosyalar (*.*)'a  çevirin.
  5. Kayıt yeri olarak masaüstünü seçin.
  6. Dosya adına Onar.vbs yazın
  7. Onar.vbs dosyasını çift tıklayarak çalıştırın.

 

Bu işlemlerden sonra  Başlat > Denetim Masası >Yönetimsel Araçlar yolunu izleyin.

Olay görüntüleyiciyi tıklayın. Windows Günlüğü altındaki Uygulama, Güvenlik, Kur, Sistem, İletilen olayların her birini sağ tuşla tıklayın ve Günlüğü temizleyi tıklayın.

 

 

 

 

    derman (1) 8 yıl önce cevapladı
    1. Kayıt türünü "Metin Belgeleri *.txt" den Tüm Dosyalar (*.*)'a  çevirin. burası kayıt olmuyo yardım
    2.