forked from MicrosoftDocs/defender-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtroubleshoot-microsoft-defender-antivirus.yml
1963 lines (1053 loc) · 71.5 KB
/
troubleshoot-microsoft-defender-antivirus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### YamlMime:FAQ
metadata:
title: Microsoft Defender Antivirus event IDs and error codes
description: Look up the causes and solutions for Microsoft Defender Antivirus event IDs and errors.
author: emmwalshh
ms.author: ewalsh
ms.reviewer: yongrhee
ms.service: defender-endpoint
ms.topic: troubleshooting
ms.date: 02/16/2024
ms.localizationpriority: medium
ms.custom: nextgen
manager: deniseb
ms.subservice: ngp
ms.collection:
- m365-security
- tier3
- mde-ngp
search.appverid: met150
title: Review event logs and error codes to troubleshoot issues with Microsoft Defender Antivirus
summary: |
If you encounter a problem with Microsoft Defender Antivirus, you can search the below sections in this article to find a matching issue and potential solution.
**Applies to:**
- [Microsoft Defender for Endpoint Plan 1](microsoft-defender-endpoint.md)
- [Microsoft Defender for Endpoint Plan 2](microsoft-defender-endpoint.md)
- Microsoft Defender Antivirus
sections:
- name: General
questions:
- question: How do I view a Microsoft Defender Antivirus event?
answer: |
1. Open **Event Viewer**.
2. In the console tree, expand **Applications and Services Logs** > **Microsoft** > **Windows** > **Windows Defender**.
3. Double-click on **Operational**.
4. In the details pane, view the list of individual events to find your event.
5. Select the event to see specific details about an event in the lower pane, under the **General** and **Details** tabs.
- question: Event ID 1000
answer: |
Symbolic name: `MALWAREPROTECTION_SCAN_STARTED`
Message: An antimalware scan started.
Description:
- Scan ID: ID number of the relevant scan.
- Scan Type: Scan type. Examples: Antivirus, Antispyware, or Antimalware
- Scan Parameters: Scan parameters. Examples: Full scan, Quick scan, or Customer scan
- Scan Resources: Resources (such as files/directories/BHO) that were scanned.
- User: Domain\User
- question: Event ID 1001
answer: |
Symbolic name: `MALWAREPROTECTION_SCAN_COMPLETED`
Message: An antimalware scan finished.
Description:
- Scan ID: ID number of the relevant scan.
- Scan Type: Scan type. Examples: Antivirus, Antispyware, or Antimalware
- Scan Parameters: Scan parameters. Examples: Full scan, Quick scan, or Customer scan
- User: Domain\User
- Scan Time: The duration of a scan.
- question: Event ID 1002
answer: |
Symbolic name: `MALWAREPROTECTION_SCAN_CANCELLED`
Message: An antimalware scan was stopped before it finished.
Description:
- Scan ID: ID number of the relevant scan.
- Scan Type: Scan type. Examples: Antivirus, Antispyware, or Antimalware
- Scan Parameters: Scan parameters. Examples: Full scan, Quick scan, or Customer scan
- User: Domain\User
- Scan Time: The duration of a scan.
- question: Event ID 1003
answer: |
Symbolic name: `MALWAREPROTECTION_SCAN_PAUSED`
Message: An antimalware scan was paused.
Description:
- Scan ID: ID number of the relevant scan.
- Scan Type: Scan type. Examples: Antivirus, Antispyware, or Antimalware
- Scan Parameters: Scan parameters. Examples: Full scan, Quick scan, or Customer scan
- User: Domain\User
- question: Event ID 1004
answer: |
Symbolic name: `MALWAREPROTECTION_SCAN_RESUMED`
Message: An antimalware scan was resumed.
Description:
- Scan ID: ID number of the relevant scan.
- Scan Type: Scan type. Examples: Antivirus, Antispyware, or Antimalware
- Scan Parameters: Scan parameters. Examples: Full scan, Quick scan, or Customer scan
- User: Domain\User
- question: Event ID 1005
answer: |
Symbolic name: `MALWAREPROTECTION_SCAN_FAILED`
Message: An antimalware scan failed.
Description:
- Scan ID: ID number of the relevant scan.
- Scan Type: Scan type. Examples: Antivirus, Antispyware, or Antimalware
- Scan Parameters: Scan parameters. Examples: Full scan, Quick scan, or Custom scan
- User: Domain\User
- Error Code: Error code. Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description. Description of the error.
User action:
The antivirus client encountered an error, and the current scan stopped. The scan might fail due to a client-side issue. This event record includes the scan ID, type of scan (Microsoft Defender Antivirus, antispyware, antimalware), scan parameters, the user that started the scan, the error code, and a description of the error. To troubleshoot this event:
- Run the scan again.
- If it fails in the same way, go to the [Microsoft Support site](https://support.microsoft.com/), enter the error number in the Search box to look for the error code.
- Contact [Microsoft Technical Support](/microsoft-365/admin/get-help-support).
- question: Event ID 1006
answer: |
Symbolic name: `MALWAREPROTECTION_MALWARE_DETECTED`
Message: The antimalware engine found malware or other potentially unwanted software.
Description: For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description. Examples: Any threat or malware type.
- Path: File path
- Detection Origin: Detection origin. Examples: Unknown, Local computer, Network share, Internet, Incoming traffic, or Outgoing traffic
- Detection Type: Detection type. Examples: Heuristics, Generic, Concrete, or Dynamic signature
- Detection Source: Detection source for example:
- User: user initiated
- System: system initiated
- Real-time: real-time component initiated
- IOAV: IE Downloads and Outlook Express Attachments initiated
- NIS: Network inspection system
- IEPROTECT: IE - IExtensionValidation; this protects against malicious webpage controls.
- Early Launch Antimalware (ELAM). This source includes malware detected by the boot sequence.
- Remote attestation
- Antimalware Scan Interface (AMSI). Primarily used to protect scripts (PowerShell, VBS), though it can be invoked by third parties as well. UAC.
- Status: Status
- User: Domain\User
- Process Name: Process in the PID
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- question: Event ID 1007
answer: |
Symbolic name: `MALWAREPROTECTION_MALWARE_ACTION_TAKEN`
Message: The antimalware platform performed an action to protect your system from malware or other potentially unwanted software.
Description: Microsoft Defender Antivirus took action to protect this machine from malware or other potentially unwanted software. For more information, see the following details:
- User: Domain\User
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Action: Action. Examples:
- Clean: The resource was cleaned.
- Quarantine: The resource was quarantined.
- Remove: The resource was deleted.
- Allow: The resource was allowed to execute/exist.
- User defined: User-defined action that's typically from this list of actions specified by the user.
- No action: No action
- Block: The resource was blocked from executing.
- Status: Status
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- question: Event ID 1008
answer: |
Symbolic name: `MALWAREPROTECTION_MALWARE_ACTION_FAILED`
Message: The antimalware platform attempted to perform an action to protect your system from malware or other potentially unwanted software, but the action failed.
Description: Microsoft Defender Antivirus encountered an error when taking action on malware or other potentially unwanted software. For more information, see the following details:
- User: Domain\User
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- Action: Action. Examples:
- Clean: The resource was cleaned.
- Quarantine: The resource was quarantined.
- Remove: The resource was deleted.
- Allow: The resource was allowed to execute/exist.
- User defined: User-defined action that's typically from this list of actions specified by the user.
- No action: No action
- Block: The resource was blocked from executing.
- Error Code: Error code Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description Description of the error.
- Status: Status
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- question: Event ID 1009
answer: |
Symbolic name: `MALWAREPROTECTION_QUARANTINE_RESTORE`
Message: The antimalware platform restored an item from quarantine.
Description: Microsoft Defender Antivirus restored an item from quarantine. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- User: Domain\User
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- question: Event ID 1010
answer: |
Symbolic name: `MALWAREPROTECTION_QUARANTINE_RESTORE_FAILED`
Message: The antimalware platform couldn't restore an item from quarantine.
Description: Microsoft Defender Antivirus encountered an error trying to restore an item from quarantine. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- User: Domain\User
- Error Code: Error code Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description Description of the error.
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- question: Event ID 1011
answer: |
Symbolic name: `MALWAREPROTECTION_QUARANTINE_DELETE`
Message: The antimalware platform deleted an item from quarantine.
Description: Microsoft Defender Antivirus deleted an item from quarantine. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- User: Domain\User
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- question: Event ID 1012
answer: |
Symbolic name: `MALWAREPROTECTION_QUARANTINE_DELETE_FAILED`
Message: The antimalware platform couldn't delete an item from quarantine.
Description: Microsoft Defender Antivirus encountered an error trying to delete an item from quarantine. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- User: Domain\User
- Error Code: Error code Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description Description of the error.
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- question: Event ID 1013
answer: |
Symbolic name: `MALWAREPROTECTION_MALWARE_HISTORY_DELETE`
Message: The antimalware platform deleted history of malware and other potentially unwanted software.
Description: Microsoft Defender Antivirus removed history of malware and other potentially unwanted software.
- Time: The time when the event occurred, for example when the history is purged. This parameter isn't used in threat events so that there's no confusion regarding whether it's remediation time or infection time. For such events, we specifically call them as Action Time or Detection Time.
- User: Domain\User
- question: Event ID 1014
answer: |
Symbolic name: `MALWAREPROTECTION_MALWARE_HISTORY_DELETE_FAILED`
Message: The antimalware platform couldn't delete history of malware and other potentially unwanted software.
Description: Microsoft Defender Antivirus encountered an error trying to remove history of malware and other potentially unwanted software.
- Time: The time when the event occurred, for example when the history is purged. This parameter isn't used in threat events so that there's no confusion regarding whether it's remediation time or infection time. For such events, we specifically call them as Action Time or Detection Time.
- User: Domain\User
- Error Code: Error code Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description Description of the error.
- question: Event ID 1015
answer: |
Symbolic name: `MALWAREPROTECTION_BEHAVIOR_DETECTED`
Message: The antimalware platform detected suspicious behavior.
Description: Microsoft Defender Antivirus detected a suspicious behavior. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- Detection Origin: Detection origin. Examples: Unknown, Local computer, Network share, Internet, Incoming traffic, or Outgoing traffic
- Detection Type: Detection type. Examples: Heuristics, Generic, Concrete, or Dynamic signature
- Detection Source: Detection source for example:
- User: user initiated
- System: system initiated
- Real-time: real-time component initiated
- IOAV: IE Downloads and Outlook Express Attachments initiated
- NIS: Network inspection system
- IEPROTECT: IE - IExtensionValidation; this source protects against malicious webpage controls.
- Early Launch Antimalware (ELAM). This source includes malware detected by the boot sequence.
- Remote attestation
- Antimalware Scan Interface (AMSI). Primarily used to protect scripts (PowerShell, VBS), though it can be invoked by third parties as well. UAC
- Status: Status
- User: Domain\User
- Process Name: Process in the PID
- Signature ID: Enumeration matching severity.
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
- Fidelity Label:
- Target File Name: File name Name of the file.
- question: Event ID 1116
answer: |
Symbolic name: `MALWAREPROTECTION_STATE_MALWARE_DETECTED`
Message: The antimalware platform detected malware or other potentially unwanted software.
Description: Microsoft Defender Antivirus detected malware or other potentially unwanted software. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- Detection Origin: Detection origin. Examples: Unknown, Local computer, Network share, Internet, Incoming traffic, or Outgoing traffic
- Detection Type: Detection type. Examples: Heuristics, Generic, Concrete, or Dynamic signature
- Detection Source: Detection source for example:
- User: user initiated
- System: system initiated
- Real-time: real-time component initiated
- IOAV: IE Downloads and Outlook Express Attachments initiated
- NIS: Network inspection system
- IEPROTECT: IE - IExtensionValidation; this protects against malicious webpage controls.
- Early Launch Antimalware (ELAM). This includes malware detected by the boot sequence.
- Remote attestation
- Antimalware Scan Interface (AMSI). Primarily used to protect scripts (PowerShell, VBS), though it can be invoked by third parties as well. UAC
- User: Domain\User
- Process Name: Process in the PID
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
User action: No action is required. Microsoft Defender Antivirus can suspend and take routine action on this threat. If you want to remove the threat manually, in the Microsoft Defender Antivirus interface, select **Clean Computer**.
- question: Event ID 1117
answer: |
Symbolic name: `MALWAREPROTECTION_STATE_MALWARE_ACTION_TAKEN`
Message: The antimalware platform performed an action to protect your system from malware or other potentially unwanted software.
Description: Microsoft Defender Antivirus took action to protect this machine from malware or other potentially unwanted software. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- Detection Origin: Detection origin. Examples: Unknown, Local computer, Network share, Internet, Incoming traffic, or Outgoing traffic
- Detection Type: Detection type. Examples: Heuristics, Generic, Concrete, or Dynamic signature
- Detection Source: Detection source for example:
- User: user initiated
- System: system initiated
- Real-time: real-time component initiated
- IOAV: IE Downloads and Outlook Express Attachments initiated
- NIS: Network inspection system
- IEPROTECT: IE - IExtensionValidation; this source protects against malicious webpage controls.
- Early Launch Antimalware (ELAM). This includes malware detected by the boot sequence.
- Remote attestation
- Antimalware Scan Interface (AMSI). Primarily used to protect scripts (PowerShell, VBS), though it can be invoked by third parties as well. UAC
- User: Domain\User
- Process Name: Process in the PID
- Action: Action. Examples:
- Clean: The resource was cleaned.
- Quarantine: The resource was quarantined.
- Remove: The resource was deleted.
- Allow: The resource was allowed to execute/exist.
- User defined: User-defined action that's typically from this list of actions specified by the user.
- No action: No action
- Block: The resource was blocked from executing.
- Action Status: Description of other actions
- Error Code: Error code Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description Description of the error.
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
Note: Whenever Microsoft Defender Antivirus, Malicious Software Removal Tool, or System Center Endpoint Protection detects a malware, it restores the following system settings and services that might have been changed by the malware:
- Default Internet Explorer or Microsoft Edge setting
- User Access Control settings
- Chrome settings
- Boot Control Data
- Regedit and Task Manager registry settings
- Windows Update, Background Intelligent Transfer Service, and Remote Procedure Call service
- Windows Operating System files
The above context applies to the following client and server versions:
- Operating system: Client Operating System
Operating system version: Windows Vista (Service Pack 1, or Service Pack 2), Windows 7 and later
- Operating system: Server Operating System
Operating system version: Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, and Windows Server 2016
User action: No action is necessary. Microsoft Defender Antivirus removed or quarantined a threat.
- question: Event ID 1118
answer: |
Symbolic name: `MALWAREPROTECTION_STATE_MALWARE_ACTION_FAILED`
Message: The antimalware platform attempted to perform an action to protect your system from malware or other potentially unwanted software, but the action failed.
Description: Microsoft Defender Antivirus encountered a noncritical error when taking action on malware or other potentially unwanted software. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- Detection Origin: Detection origin. Examples: Unknown, Local computer, Network share, Internet, Incoming traffic, or Outgoing traffic
- Detection Type: Detection type. Examples: Heuristics, Generic, Concrete, or Dynamic signature
- Detection Source: Detection source for example:
- User: user initiated
- System: system initiated
- Real-time: real-time component initiated
- IOAV: IE Downloads and Outlook Express Attachments initiated
- NIS: Network inspection system
- IEPROTECT: IE - IExtensionValidation; this protects against malicious webpage controls.
- Early Launch Antimalware (ELAM). This includes malware detected by the boot sequence.
- Remote attestation
- Antimalware Scan Interface (AMSI). Primarily used to protect scripts (PowerShell, VBS), though it can be invoked by third parties as well. UAC
- User: Domain\User
- Process Name: Process in the PID
- Action: Action. Examples:
- Clean: The resource was cleaned.
- Quarantine: The resource was quarantined.
- Remove: The resource was deleted.
- Allow: The resource was allowed to execute/exist
- User defined: User-defined action that's typically from this list of actions specified by the user.
- No action: No action
- Block: The resource was blocked from executing
- Action Status: Description of additional actions
- Error Code: Error code Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description Description of the error.
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
User action: No action is necessary. Microsoft Defender Antivirus failed to complete a task related to the malware remediation. This isn't a critical failure.
- question: Event ID 1119
answer: |
Symbolic name: `MALWAREPROTECTION_STATE_MALWARE_ACTION_CRITICALLY_FAILED`
Message: The antimalware platform encountered a critical error when trying to take action on malware or other potentially unwanted software. There are more details in the event message.
Description: Microsoft Defender Antivirus encountered a critical error when taking action on malware or other potentially unwanted software. For more information, see the following details:
- Name: Threat name
- ID: Threat ID
- Severity: Severity. Examples: Low, Moderate, High, or Severe
- Category: Category description, for example, any threat or malware type.
- Path: File path
- Detection Origin: Detection origin. Examples: Unknown, Local computer, Network share, Internet, Incoming traffic, or Outgoing traffic
- Detection Type: Detection type. Examples: Heuristics, Generic, Concrete, or Dynamic signature
- Detection Source: Detection source for example:
- User: user initiated
- System: system initiated
- Real-time: real-time component initiated
- IOAV: IE Downloads and Outlook Express Attachments initiated
- NIS: Network inspection system
- IEPROTECT: IE - IExtensionValidation; this protects against malicious webpage controls.
- Early Launch Antimalware (ELAM). This includes malware detected by the boot sequence
- Remote attestation
- Antimalware Scan Interface (AMSI). Primarily used to protect scripts (PowerShell, VBS), though it can be invoked by third parties as well. UAC
- User: Domain\User
- Process Name: Process in the PID
- Action: Action. Examples:
- Clean: The resource was cleaned
- Quarantine: The resource was quarantined.
- Remove: The resource was deleted.
- Allow: The resource was allowed to execute/exist.
- User defined: User-defined action that's typically from this list of actions specified by the user.
- No action: No action
- Block: The resource was blocked from executing.
- Action Status: Description of other actions
- Error Code: Error code Result code associated with threat status. Standard HRESULT values.
- Error Description: Error description Description of the error.
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
User action: The Microsoft Defender Antivirus client encountered this error due to critical issues. The endpoint might not be protected. Review the error description then follow the relevant **User action** steps.
- Action: Remove
User action: Update the definitions then verify that the removal was successful.
- Action: Clean
User action: Update the definitions then verify that the remediation was successful.
- Action: Quarantine
User action: Update the definitions and verify that the user has permission to access the necessary resources.
- Action: Allow
User action: Verify that the user has permission to access the necessary resources.
If this event persists:
- Run the scan again.
- If it fails in the same way, go to the [Microsoft Support site](https://support.microsoft.com/), enter the error number in the **Search** box to look for the error code.
- Contact [Microsoft Technical Support](/microsoft-365/admin/get-help-support).
- question: Event ID 1120
answer: |
Symbolic name: `MALWAREPROTECTION_THREAT_HASH`
Message: Microsoft Defender Antivirus deduced the hashes for a threat resource.
Description: Microsoft Defender Antivirus client is up and running in a healthy state.
- Current Platform Version: Current platform version
- Threat Resource Path: Path
- Hashes: Hashes
Note: This event will only be logged if the following policy is set: ThreatFileHashLogging unsigned.
- question: Event ID 1121
answer: |
Message: Event when an attack surface reduction rule fires in block mode.
Description:
- Current Platform Version: Current platform version
- Threat Resource Path: Path
- Hashes: Hashes
- question: Event ID 1127
answer: |
Symbolic name: `MALWAREPROTECTION_FOLDER_GUARD_SECTOR_BLOCK`
Message: Controlled Folder Access(CFA) blocked an untrusted process from making changes to the memory.
Description: Controlled Folder Access blocked an untrusted process from potentially modifying disk sectors. For more information about the event record, see the following details:
- EventID: EventID. Examples: 1127
- Version: Version. Examples: 0
- Level: Level. Examples: win: Warning
- TimeCreated: SystemTime, time when the event was created.
- EventRecordID: EventRecordID, index number of the event in the event log
- Execution ProcessID: Execution ProcessID, process that generated the event
- Channel: Event channel. Examples: Microsoft-Windows-Windows Defender/Operational
- Computer: Computer name
- Security UserID: Security UserID
- Product Name: Product Name. Examples: Microsoft Defender Antivirus
- Product Version: Product Version
- Detection Time: Detection Time, time when CFA blocked an untrusted process
- User: Domain\User
- Path: Device name, name of the device or disk that an untrusted process accessed for modification
- Process Name: Process path, the process path name that CFA blocked from accessing the device or disk for modification
- Security Intelligence Version: Security intelligence version
- Engine Version: Antimalware Engine version
User action: The user can add the blocked process to the Allowed Process list for CFA, using PowerShell or Windows Security Center.
- question: Event ID 1150
answer: |
Symbolic name: `MALWAREPROTECTION_SERVICE_HEALTHY`
Message: If your antimalware platform reports status to a monitoring platform, this event indicates that the antimalware platform is running and in a healthy state.
Description: Microsoft Defender Antivirus client is up and running in a healthy state.
- Platform Version: Current platform version
- Signature Version: Definition version
- Engine Version: Antimalware Engine version
User action: No action is necessary. The Microsoft Defender Antivirus client is in a healthy state. This event is reported on an hourly basis.
- question: Event ID 1151
answer: |
Symbolic name: `MALWAREPROTECTION_SERVICE_HEALTH_REPORT`
Message: Endpoint Protection client health report (time in UTC)
Description: Antivirus client health report.
- Platform Version: Current platform version
- Engine Version: Antimalware Engine version
- Network Realtime Inspection engine version: Network Realtime Inspection engine version
- Antivirus signature version: Antivirus signature version
- Antispyware signature version: Antispyware signature version
- Network Realtime Inspection signature version: Network Realtime Inspection signature version
- RTP state: Realtime protection state (Enabled or Disabled)
- OA state: On Access state (Enabled or Disabled)
- IOAV state: IE Downloads and Outlook Express Attachments state (Enabled or Disabled)
- BM state: Behavior Monitoring state (Enabled or Disabled)
- Antivirus signature age: Antivirus signature age (in days)
- Antispyware signature age: Antispyware signature age (in days)
- Last quick scan age: Last quick scan age (in days)
- Last full scan age: Last full scan age (in days)
- Antivirus signature creation time: Antivirus signature creation time
- Antispyware signature creation time: Antispyware signature creation time
- Last quick scan start time: Last quick scan start time
- Last quick scan end time: Last quick scan end time
- Last quick scan source: Last quick scan source (0 = scan didn't run, 1 = user initiated, 2 = system initiated)
- Last full scan start time: Last full scan start time
- Last full scan end time: Last full scan end time
- Last full scan source: Last full scan source (0 = scan didn't run, 1 = user initiated, 2 = system initiated)
- Product status: For internal troubleshooting
- question: Event ID 2000
answer: |
Symbolic name: `MALWAREPROTECTION_SIGNATURE_UPDATED`
Message: The antimalware definitions updated successfully.
Description: Antivirus signature version was updated.
- Current Signature Version: Current signature version
- Previous Signature Version: Previous signature version
- Signature Type: Signature type. Examples: Antivirus, Antispyware, Antimalware, or Network Inspection System
- Update Type: Update type, either Full or Delta.
- User: Domain\User
- Current Engine Version: Current engine version