-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathTOC.yml
More file actions
1637 lines (1554 loc) · 74.7 KB
/
TOC.yml
File metadata and controls
1637 lines (1554 loc) · 74.7 KB
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
- name: Microsoft Defender for Endpoint
href: index.yml
expanded: true
items:
- name: Zero Trust with Defender for Endpoint
href: zero-trust-with-microsoft-defender-endpoint.md
- name: Overview
items:
- name: What is Microsoft Defender for Endpoint?
items:
- name: Defender for Endpoint
href: microsoft-defender-endpoint.md
- name: Defender for Endpoint on macOS
href: microsoft-defender-endpoint-mac.md
- name: Defender for Endpoint on Linux
href: microsoft-defender-endpoint-linux.md
- name: Defender for Endpoint on Android
href: microsoft-defender-endpoint-android.md
- name: Defender for Endpoint on iOS
href: microsoft-defender-endpoint-ios.md
- name: Defender for Endpoint for US Government customers
href: gov.md
- name: Supported Defender for Endpoint capabilities by platform
href: supported-capabilities-by-platform.md
- name: Antivirus solution compatibility with Defender for Endpoint
href: defender-compatibility.md
- name: Defender for Endpoint Plan 1
items:
- name: Overview of Defender for Endpoint Plan 1
href: defender-endpoint-plan-1.md
- name: Setup and configuration
href: mde-p1-setup-configuration.md
- name: Get started
href: mde-plan1-getting-started.md
- name: What's new in Defender for Endpoint
href: whats-new-in-microsoft-defender-endpoint.md
items:
- name: MsSense versions (Windows)
href: windows-whatsnew.md
- name: Defender for Endpoint on macOS releases
href: mac-whatsnew.md
- name: Defender for Endpoint on Linux releases
href: linux-whatsnew.md
- name: What's new in Defender for Endpoint on Android
href: android-whatsnew.md
- name: What's new in Defender for Endpoint on iOS
href: ios-whatsnew.md
- name: Previous Defender for Endpoint releases (archive)
href: whats-new-mde-archive.md
- name: Trial user guide - Defender for Endpoint
href: defender-endpoint-trial-user-guide.md
- name: Pilot and deploy Defender for Endpoint
href: /defender-xdr/pilot-deploy-defender-endpoint?toc=/defender-endpoint/TOC.json&bc=/defender-endpoint/breadcrumb/toc.json
- name: Preview features
href: /defender-xdr/preview
- name: Data storage and privacy
href: data-storage-privacy.md
- name: Microsoft Defender for Endpoint demonstrations and evaluation
items:
- name: Evaluate Microsoft Defender Antivirus
href: evaluate-microsoft-defender-antivirus.md
items:
- name: Guidance for pen testing and BAS scenarios
href: guidance-for-pen-testing-and-bas.md
- name: Evaluate Microsoft Defender Antivirus using PowerShell
href: microsoft-defender-antivirus-using-powershell.md
- name: Evaluate Microsoft Defender Antivirus using Microsoft Defender Endpoint Security Settings Management
href: evaluate-mda-using-mde-security-settings-management.md
- name: Evaluate Microsoft Defender Antivirus using Group Policy
href: evaluate-mdav-using-gp.md
- name: Demonstration scenarios
href: defender-endpoint-demonstrations.md
items:
- name: AMSI demonstrations
href: mde-demonstration-amsi.md
- name: Antimalware validation demonstration
href: validate-antimalware.md
- name: Attack surface reduction rules demonstration
href: defender-endpoint-demonstration-attack-surface-reduction-rules.md
- name: App reputation demonstration
href: defender-endpoint-demonstration-app-reputation.md
- name: Behavior monitoring demonstration
href: demonstration-behavior-monitoring.md
- name: Cloud-delivered protection
href: defender-endpoint-demonstration-cloud-delivered-protection.md
- name: Controlled folder access (block script) demonstration
href: defender-endpoint-demonstration-controlled-folder-access-test-tool.md
- name: Controlled folder access (block ransomware) demonstration
href: defender-endpoint-demonstration-controlled-folder-access.md
- name: EDR detections demonstration
href: edr-detection.md
- name: Exploit protection demonstration
href: defender-endpoint-demonstration-exploit-protection.md
- name: Network protection demonstration
href: defender-endpoint-demonstration-network-protection.md
- name: Potentially unwanted applications demonstration
href: defender-endpoint-demonstration-potentially-unwanted-applications.md
- name: URL reputation demonstrations
href: defender-endpoint-demonstration-smartscreen-url-reputation.md
- name: Operationalize Microsoft Defender for Endpoint
items:
- name: Deploy Defender for Endpoint
items:
- name: Overview
href: mde-planning-guide.md
- name: Step 1 - Prepare for deployment
href: production-deployment.md
- name: Step 2 - Assign roles and permissions
href: prepare-deployment.md
- name: Step 3 - Identify your architecture and select a deployment method
href: deployment-strategy.md
- name: Step 4 - Onboard devices to Defender for Endpoint
href: onboarding.md
- name: Step 5 - Configure Defender for Endpoint capabilities
href: onboard-configure.md
- name: Onboard and configure devices
items:
- name: Configure service connections
items:
- name: Step 1 - Configure your network environment
href: configure-environment.md
- name: Step 2 - Configure device proxy and Internet settings
href: configure-proxy-internet.md
- name: Step 3 - Verify client connectivity to service URLs
href: verify-connectivity.md
- name: Onboard devices using streamlined method
href: configure-device-connectivity.md
- name: Migrate devices to streamlined method
href: migrate-devices-streamlined.md
- name: Enable access to service URLs - US government
href: streamlined-device-connectivity-urls-gov.md
- name: Onboard client devices
items:
- name: Onboard Windows devices using the Defender deployment tool
href: defender-deployment-tool-windows.md
- name: Onboard client devices running Windows or macOS
href: onboard-client.md
- name: Defender for Endpoint plug-in for WSL
href: mde-plugin-wsl.md
- name: Onboard Windows devices to Defender for Endpoint using Intune
href: configure-endpoints-mdm.md
- name: Onboard Windows devices to Defender for Endpoint using Microsoft Configuration Manager
href: configure-endpoints-sccm.md
- name: Onboard Windows devices to Defender for Endpoint using Group Policy
href: configure-endpoints-gp.md
- name: Onboard Windows devices to Defender for Endpoint using a local script
href: configure-endpoints-script.md
- name: Onboard non-persistent virtual desktop infrastructure (VDI) devices
href: configure-endpoints-vdi.md
- name: Onboard Windows 10 multi-session devices in Azure Virtual Desktop
href: onboard-windows-multi-session-device.md
- name: Onboard previous versions of Windows
href: onboard-downlevel.md
- name: Onboard server devices
items:
- name: Onboard servers through Defender for Endpoint's experience
href: onboard-server.md
- name: Onboard Windows devices using Configuration Manager
href: configure-endpoints-sccm.md
- name: Onboard Windows devices using Group Policy
href: configure-endpoints-gp.md
- name: Onboard Windows devices using a local script
href: configure-endpoints-script.md
- name: Onboard non-persistent virtual desktop infrastructure (VDI) devices
href: configure-endpoints-vdi.md
- name: Direct onboarding with Defender for Cloud
href: /azure/defender-for-cloud/onboard-machines-with-defender-for-endpoint?toc=/defender-endpoint/toc.json&bc=/defender-endpoint/breadcrumb/toc.json
- name: Defender for Endpoint on Windows Server with SAP
href: mde-sap-windows-server.md
- name: Deployment guidance for Defender for Endpoint on Linux for SAP
href: mde-linux-deployment-on-sap.md
- name: Use custom detection rules to protect SAPXPG
href: mde-sap-custom-detection-rules.md
- name: Defender for Endpoint on macOS
items:
- name: Deploy Defender for Endpoint on macOS
items:
- name: Microsoft Defender for Endpoint Prerequisites on macOS
href: microsoft-defender-endpoint-mac-prerequisites.md
- name: Deployment with Microsoft Intune
href: mac-install-with-intune.md
- name: JAMF Pro-based deployment
items:
- name: Deploying Microsoft Defender for Endpoint on macOS using Jamf Pro
href: mac-install-with-jamf.md
- name: Log in to Jamf Pro
href: mac-install-jamfpro-login.md
- name: Set up device groups
href: mac-jamfpro-device-groups.md
- name: Set up policies
href: mac-jamfpro-policies.md
- name: Enroll devices
href: mac-jamfpro-enroll-devices.md
- name: Deployment with other Mobile Device Management (MDM) systems
href: mac-install-with-other-mdm.md
- name: Manual deployment
href: mac-install-manually.md
- name: Configure Defender for Endpoint on macOS
items:
- name: Configure and validate exclusions on Mac
href: mac-exclusions.md
- name: Set preferences on Mac
href: mac-preferences.md
- name: Detect and block potentially unwanted applications on Mac
href: mac-pua.md
- name: Protect macOS security settings using tamper protection
href: tamperprotection-macos.md
- name: Configure offline security intelligence updates on Mac
href: mac-support-offline-security-intelligence-update.md
- name: Device control
items:
- name: Device control overview on Mac
href: mac-device-control-overview.md
- name: JAMF examples
href: mac-device-control-jamf.md
- name: Intune examples
href: mac-device-control-intune.md
- name: macOS Device Control frequently asked questions (FAQ)
href: mac-device-control-faq.md
- name: Schedule scans on Mac
href: mac-schedule-scan.md
- name: Update Defender for Endpoint on macOS
href: mac-updates.md
- name: Privacy for Microsoft Defender for Endpoint on macOS
href: mac-privacy.md
- name: Resources for Microsoft Defender for Endpoint on macOS
href: mac-resources.md
- name: Troubleshoot Microsoft Defender for Endpoint on macOS
items:
- name: Troubleshoot agent health issues
href: mac-health-status.md
- name: Troubleshooting mode on macOS
href: mac-troubleshoot-mode.md
- name: Troubleshoot macOS installation issues
href: mac-support-install.md
- name: Troubleshoot macOS configuration
href: mac-support-configuration.md
- name: Troubleshoot macOS performance issues overview
href: mac-support-perf-overview.md
displayName: Troubleshoot performance issues for Microsoft Defender for Endpoint on macOS
- name: Troubleshoot performance issues
href: mac-support-perf.md
- name: Troubleshoot cloud connectivity
href: troubleshoot-cloud-connect-mdemac.md
- name: Troubleshoot license issues
href: mac-support-license.md
- name: Troubleshoot system extention issues
href: mac-support-sys-ext.md
items:
- name: Intune
href: manage-profiles-approve-sys-extensions-intune.md
- name: JamF
href: manage-sys-extensions-using-jamf.md
- name: Manual deployment
href: manage-sys-extensions-manual-deployment.md
- name: Defender for Endpoint on Linux
items:
- name: Deploy Defender for Endpoint on Linux
items:
- name: Prerequisites
href: mde-linux-prerequisites.md
- name: Choose a deployment method
items:
- name: Enabling deployment to a custom location
href: linux-custom-location-installation.md
- name: Deployment tool based deployment
href: linux-install-with-defender-deployment-tool.md
- name: Installer script based deployment
href: linux-installer-script.md
- name: Ansible based deployment
href: linux-install-with-ansible.md
- name: Chef based deployment
href: linux-deploy-defender-for-endpoint-with-chef.md
- name: Puppet based deployment
href: linux-install-with-puppet.md
- name: Saltstack based deployment
href: linux-install-with-saltack.md
- name: Manual deployment
href: linux-install-manually.md
- name: Golden image based deployment
href: linux-deploy-defender-for-endpoint-using-golden-images.md
- name: Direct onboarding with Defender for Cloud
href: /azure/defender-for-cloud/onboard-machines-with-defender-for-endpoint?toc=/defender-endpoint/toc.json&bc=/defender-endpoint/breadcrumb/toc.json
- name: Deployment guidance for Defender for Endpoint on Linux for SAP
href: mde-linux-deployment-on-sap.md
- name: Configure Defender for Endpoint on Linux
items:
- name: Configure security policies and settings
href: linux-preferences.md
- name: Static proxy configuration
href: linux-static-proxy-configuration.md
- name: Configure antivirus scans
items:
- name: Configure Microsoft Defender Antivirus scans on Linux
href: schedule-anti-virus-scans-linux.md
- name: Schedule antivirus scans using Anacron
href: schedule-antivirus-scan-anacron.md
- name: Schedule antivirus scans using Crontab
href: schedule-antivirus-scan-crontab.md
- name: Network protection for Linux
href: network-protection-linux.md
- name: Configure and validate exclusions on Linux
href: linux-exclusions.md
- name: Configure eBPF-based sensor
href: linux-support-ebpf.md
- name: Detect and block Potentially Unwanted Applications
href: linux-pua.md
- name: Configure Offline Security Intelligence Update
href: linux-support-offline-security-intelligence-update.md
- name: Update Defender for Endpoint on Linux
items:
- name: Update Defender for Endpoint on Linux
href: linux-updates.md
- name: Schedule an update for Defender for Endpoint on Linux
href: linux-update-mde-linux.md
- name: Privacy for Defender for Endpoint on Linux
href: linux-privacy.md
- name: Additional resources for Defender for Endpoint on Linux
href: linux-resources.md
- name: Mobile Threat Defense
items:
- name: Mobile Threat Defense overview
href: mtd.md
- name: Deploy
items:
- name: Deployment on Android with Microsoft Intune
href: android-intune.md
- name: Deployment on iOS via Microsoft Intune
href: ios-install.md
- name: Deployment on iOS with Mobile Application Manager
href: ios-install-unmanaged.md
- name: Configure Mobile Threat Defense
items:
- name: User experiences in Defender for Endpoint on Android
href: android-new-ux.md
- name: User experiences in Defender for Endpoint on iOS
href: ios-new-ux.md
- name: Mobile device resources for Defender for Endpoint
href: mobile-resources-defender-endpoint.md
- name: Configure Defender for Endpoint on Android features
href: android-configure.md
- name: Configure Defender for Endpoint on Android risk signals using app protection policy
href: android-configure-mam.md
- name: Privacy for Defender for Endpoint on Android
href: android-privacy.md
- name: Configure Defender for Endpoint on iOS features
href: ios-configure-features.md
- name: Privacy for Defender for Endpoint on iOS
href: ios-privacy.md
- name: Run a detection test on a newly onboarded Microsoft Defender for Endpoint
href: run-detection-test.md
- name: Configure portal settings
items:
- name: Configure general Defender for Endpoint settings
href: preferences-setup.md
- name: General
items:
- name: Configure alert notifications
href: /defender-xdr/configure-email-notifications
- name: Configure vulnerability email notifications
href: configure-vulnerability-email-notifications.md
- name: Configure advanced features
href: advanced-features.md
- name: Permissions
items:
- name: Use basic permissions to access the portal
href: basic-permissions.md
- name: Assign user access to the portal
href: assign-portal-access.md
items:
- name: Create and manage roles
href: user-roles.md
- name: Create and manage device groups
href: machine-groups.md
- name: Create and manage device tags
href: machine-tags.md
- name: Rules and exclusions
items:
- name: Exclusions overview
href: navigate-defender-endpoint-antivirus-exclusions.md
- name: Manage suppression rules
href: manage-suppression-rules.md
- name: Indicators
items:
- name: Overview of indicators
href: indicators-overview.md
- name: Create indicators for files
href: indicator-file.md
- name: Create indicators for IPs and URLs/domains
href: indicator-ip-domain.md
- name: Create indicators for certificates
href: indicator-certificates.md
- name: Manage indicators
href: indicator-manage.md
- name: Manage automation file uploads
href: manage-automation-file-uploads.md
- name: Manage automation folder exclusions
href: manage-automation-folder-exclusions.md
- name: Device management
items:
- name: Onboarding devices
href: onboarding.md
- name: Offboarding devices
href: offboard-machines.md
- name: Ensure your devices are configured properly
href: configure-machines.md
- name: Monitor and increase device onboarding
href: configure-machines-onboarding.md
- name: Updating MMA on Windows devices
href: update-agent-mma-windows.md
- name: Configure time zone settings
href: time-settings.md
- name: Safeguard and manage your environment
items:
- name: Managing exclusions reference
href: managing-exclusions.md
- name: Address unwanted behaviors with exclusions, indicators, and other techniques
href: address-unwanted-behaviors-mde.md
- name: Safe deployment practices
href: mde-sdp-strategy.md
- name: Defender for Endpoint Security Operations Guide
href: mde-sec-ops-guide.md
- name: Troubleshoot
items:
- name: Troubleshoot antivirus scan issues
href: troubleshoot-mdav-scan-issues.md
- name: Troubleshoot onboarding issues
items:
- name: Troubleshoot issues during onboarding
href: troubleshoot-onboarding.md
- name: Troubleshoot subscription and portal access issues
href: troubleshoot-onboarding-error-messages.md
- name: Troubleshoot security configuration management onboarding issues
href: troubleshoot-security-config-mgt.md
- name: Troubleshoot problems with tamper protection
href: troubleshoot-problems-with-tamper-protection.yml
- name: Troubleshooting migration issues
href: switch-to-mde-troubleshooting.md
- name: Troubleshoot sensor state
items:
- name: Check sensor state
href: check-sensor-status.md
- name: Fix unhealthy sensors
href: fix-unhealthy-sensors.md
- name: Inactive devices
href: fix-unhealthy-sensors.md#inactive-devices
- name: Misconfigured devices
href: fix-unhealthy-sensors.md#misconfigured-devices
- name: Review sensor events and errors on machines using Event Viewer
href: event-error-codes.md
- name: Troubleshoot Microsoft Defender for Endpoint on macOS
items:
- name: Troubleshoot NetExt issues with Defender for Endpoint on Mac
href: mac-troubleshoot-netext-mde.md
- name: Troubleshooting mode on macOS
href: mac-troubleshoot-mode.md
- name: Troubleshoot macOS installation issues
href: mac-support-install.md
- name: Troubleshoot macOS performance issues overview
href: mac-support-perf-overview.md
displayName: Troubleshoot performance issues for Defender for Endpoint on macOS
- name: Troubleshoot performance issues
href: mac-support-perf.md
- name: Troubleshoot cloud connectivity
href: troubleshoot-cloud-connect-mdemac.md
- name: Troubleshoot license issues
href: mac-support-license.md
- name: Troubleshoot system extention issues
href: mac-support-sys-ext.md
items:
- name: Intune
href: manage-profiles-approve-sys-extensions-intune.md
- name: JamF
href: manage-sys-extensions-using-jamf.md
- name: Manual deployment
href: manage-sys-extensions-manual-deployment.md
- name: Troubleshoot Microsoft Defender for Endpoint on Linux
items:
- name: Troubleshoot Linux installation issues
href: linux-support-install.md
- name: Investigate agent health issues
href: health-status.md
- name: Troubleshoot cloud connectivity issues
href: linux-support-connectivity.md
- name: Troubleshoot performance issues
href: linux-support-perf.md
- name: Troubleshoot missing events issues
href: linux-support-events.md
- name: Troubleshoot Mobile Threat Defense
items:
- name: Troubleshoot Microsoft Defender for Endpoint on Android issues
href: android-support-signin.md
- name: Troubleshoot Microsoft Defender for Endpoint on iOS issues
href: ios-troubleshoot.md
- name: Troubleshoot sensor health issues using Client Analyzer
items:
- name: Client analyzer overview
href: overview-client-analyzer.md
- name: Run the client analyzer on Windows
href: run-analyzer-windows.md
- name: Run the client analyzer on Linux
href: run-analyzer-linux.md
- name: Run the client analyzer on macOS
href: run-analyzer-macos.md
- name: Diagnose issues with Client Analyzer
href: use-client-analyzer.md
- name: Data collection for advanced troubleshooting on Windows
href: data-collection-analyzer.md
- name: Understand the analyzer HTML report
href: analyzer-report.md
- name: Provide feedback on the client analyzer tool
href: analyzer-feedback.md
- name: Troubleshoot Microsoft Defender for Endpoint service issues
items:
- name: Troubleshoot service issues
href: troubleshoot-mdatp.md
- name: Contact Microsoft Defender for Endpoint support
href: contact-support.md
- name: Troubleshoot live response issues
href: troubleshoot-live-response.md
- name: Collect support logs using LiveAnalyzer
href: troubleshoot-collect-support-log.md
- name: Run remote MDE Client Analyzer traces via live response
href: troubleshoot-remotely-with-client-analyzer.md
- name: Troubleshoot Microsoft Defender Antivirus settings
href: troubleshoot-settings.md
- name: Troubleshoot Microsoft Defender Antivirus Security intelligence not getting updated
href: troubleshoot-security-intelligence-not-updated.md
- name: Troubleshooting Security Intelligence Updates from Microsoft Update source
href: security-intelligence-update-tshoot.md
displayName: Troubleshooting Security Intelligence Updates from Microsoft Update source
- name: Troubleshoot attack surface reduction issues
items:
- name: Network protection
href: troubleshoot-np.md
- name: Attack surface reduction rules
href: troubleshoot-asr.md
- name: Migrate to Attack surface reduction rules
href: migrating-asr-rules.md
- name: How to guides
items:
- name: Integration with Microsoft Defender for Cloud
href: azure-server-integration.md
- name: Create an onboarding or offboarding notification rule
href: onboarding-notification.md
- name: Manage Microsoft Defender for Endpoint configuration settings on devices with Microsoft Intune
href: /intune/intune-service/protect/mde-security-integration
- name: Manage Defender for Endpoint P1/P2 across devices
href: defender-endpoint-subscription-settings.md
- name: Onboarding using Microsoft Configuration Manager
href: onboarding-endpoint-configuration-manager.md
- name: Onboarding using Microsoft Intune
href: onboarding-endpoint-manager.md
- name: Deploy Microsoft Defender for Endpoint prerelease builds on Android devices
href: mobile-pretest-android.md
- name: Migration guides
items:
- name: Migration guides overview
href: migration-guides.md
- name: Considerations for side-by-side deployment
href: mde-side-by-side.md
- name: Migrate servers to Defender for Cloud
href: migrating-mde-server-to-cloud.md
- name: Migrate to Defender for Endpoint
items:
- name: Overview
href: switch-to-mde-overview.md
- name: Phase 1 - Prepare
href: switch-to-mde-phase-1.md
- name: Phase 2 - Setup
href: switch-to-mde-phase-2.md
- name: Phase 3 - Onboard
href: switch-to-mde-phase-3.md
- name: Server migration scenarios
items:
- name: Overview
href: server-migration.md
- name: Migrating servers from Microsoft Monitoring Agent to the unified solution
href: application-deployment-via-mecm.md
- name: Detect threats and protect endpoints
items:
- name: Microsoft Defender Vulnerability Management
href: /defender-vulnerability-management
- name: Device discovery
items:
- name: Device discovery overview
href: device-discovery.md
- name: Configure device discovery
href: configure-device-discovery.md
- name: Enterprise IoT security
items:
- name: Securing IoT devices in the enterprise
href: /azure/defender-for-iot/organizations/concept-enterprise/
- name: Enable Enterprise IoT security with Defender for Endpoint
href: /azure/defender-for-iot/organizations/eiot-defender-for-endpoint/
- name: Manage Defender for IoT plans
href: /azure/defender-for-iot/organizations/manage-subscriptions-enterprise/
- name: Device discovery FAQ
href: device-discovery-faq.md
- name: Authenticated network scans
href: network-devices.md
- name: Devices
items:
- name: Device inventory
href: machines-view-overview.md
- name: Exclude devices
href: exclude-devices.md
- name: Identifying transient devices
href: transient-device-tagging.md
- name: Collect custom device data
items:
- name: Overview
href: custom-data-collection.md
- name: Create custom data collection rules
href: create-custom-data-collection-rules.md
- name: Internet facing devices
href: internet-facing-devices.md
- name: Device timeline
href: device-timeline-event-flag.md
- name: Manage device group and tags
href: machine-tags.md
- name: Tamper resiliency
href: tamper-resiliency.md
- name: Attack surface reduction
items:
- name: Attack surface reduction overview
href: overview-attack-surface-reduction.md
- name: Attack surface reduction rules
items:
- name: Learn about ASR rules
href: attack-surface-reduction.md
- name: Attack surface reduction rules deployment guide
items:
- name: Attack surface reduction rules deployment overview
href: attack-surface-reduction-rules-deployment.md
- name: Plan attack surface reduction rules deployment
href: attack-surface-reduction-rules-deployment-plan.md
- name: Test attack surface reduction rules
href: attack-surface-reduction-rules-deployment-test.md
- name: Enable attack surface reduction rules
href: attack-surface-reduction-rules-deployment-implement.md
- name: Operationalize attack surface reduction rules
href: attack-surface-reduction-rules-deployment-operationalize.md
- name: Attack surface reduction rules reference
href: attack-surface-reduction-rules-reference.md
- name: Troubleshoot attack surface reduction rules
href: troubleshoot-asr-rules.md
- name: Enable ASR rules alternate configuration methods
href: enable-attack-surface-reduction.md
- name: Attack surface reduction FAQ
href: attack-surface-reduction-faq.yml
- name: Controlled folder access
items:
- name: Protect folders
href: controlled-folders.md
- name: Evaluate controlled folder access
href: evaluate-controlled-folder-access.md
- name: Enable controlled folder access
href: enable-controlled-folders.md
- name: Customize controlled folder access
href: customize-controlled-folders.md
- name: Device Control
items:
- name: Overview of device control
href: device-control-overview.md
- name: Device control walkthroughs
href: device-control-walkthroughs.md
- name: Understand device control policies
href: device-control-policies.md
- name: Deploy and manage device control with Microsoft Intune
href: device-control-deploy-manage-intune.md
- name: Deploy and manage device control with Group Policy
href: device-control-deploy-manage-gpo.md
- name: Device control frequently asked questions
href: device-control-faq.md
- name: Exploit protection
items:
- name: Protect devices from exploits
href: exploit-protection.md
- name: Exploit protection evaluation
href: evaluate-exploit-protection.md
- name: Enable exploit protection
href: enable-exploit-protection.md
- name: Customize exploit protection
href: customize-exploit-protection.md
- name: Import, export, and deploy exploit protection configurations
href: import-export-exploit-protection-emet-xml.md
- name: Troubleshoot exploit protection mitigations
href: troubleshoot-exploit-protection-mitigations.md
- name: Exploit protection reference
href: exploit-protection-reference.md
- name: Network protection
items:
- name: Protect your network
href: network-protection.md
- name: Evaluate network protection
href: evaluate-network-protection.md
- name: Turn on network protection
href: enable-network-protection.md
- name: Network protection for MacOS
href: network-protection-macos.md
- name: Web protection
items:
- name: Web protection overview
href: web-protection-overview.md
- name: Web threat protection
items:
- name: Web threat protection overview
href: web-threat-protection.md
- name: Respond to web threats
href: web-protection-response.md
- name: Web content filtering
href: web-content-filtering.md
- name: Next-generation protection
items:
- name: Next-generation protection overview
href: next-generation-protection.md
items:
- name: Overview of Microsoft Defender Antivirus
href: microsoft-defender-antivirus-windows.md
- name: Microsoft Defender Antivirus on Windows Server
href: microsoft-defender-antivirus-on-windows-server.md
- name: Enable and update Microsoft Defender Antivirus on Windows Server
href: enable-update-mdav-to-latest-ws.md
- name: Microsoft Defender Antivirus in the Windows Security app
href: microsoft-defender-security-center-antivirus.md
- name: Better together - Microsoft Defender Antivirus and Microsoft Defender for Endpoint
href: why-use-microsoft-defender-antivirus.md
- name: Better together - Microsoft Defender Antivirus and Office 365
href: office-365-microsoft-defender-antivirus.md
- name: Safety Scanner Download
href: safety-scanner-download.md
- name: Configure Microsoft Defender Antivirus features
href: configure-microsoft-defender-antivirus-features.md
- name: Cloud protection and Microsoft Defender Antivirus
href: cloud-protection-microsoft-defender-antivirus.md
items:
- name: Turn on cloud protection
href: enable-cloud-protection-microsoft-defender-antivirus.md
- name: Specify the cloud protection level
href: specify-cloud-protection-level-microsoft-defender-antivirus.md
- name: Configure the cloud block timeout period
href: configure-cloud-block-timeout-period-microsoft-defender-antivirus.md
- name: Cloud protection and sample submission
href: cloud-protection-microsoft-antivirus-sample-submission.md
- name: Configure and validate Microsoft Defender Antivirus network connections
href: configure-network-connections-microsoft-defender-antivirus.md
- name: Tamper protection
items:
- name: Protect security settings with tamper protection
href: prevent-changes-to-security-settings-with-tamper-protection.md
- name: Manage tamper protection using Microsoft Defender XDR
href: manage-tamper-protection-microsoft-365-defender.md
- name: Manage tamper protection with Intune
href: manage-tamper-protection-intune.md
- name: Manage tamper protection with Configuration Manager
href: manage-tamper-protection-configuration-manager.md
- name: Manage tamper protection on an individual device
href: manage-tamper-protection-individual-device.md
- name: FAQs on tamper protection
href: faqs-on-tamper-protection.yml
- name: Turn on block at first sight
href: configure-block-at-first-sight-microsoft-defender-antivirus.md
- name: Antimalware Scan Interface (AMSI) integration
href: amsi-on-mdav.md
- name: Configure behavioral, heuristic, and real-time protection
href: configure-protection-features-microsoft-defender-antivirus.md
- name: Advanced technologies at the core of Microsoft Defender Antivirus
href: adv-tech-of-mdav.md
- name: Behavior monitoring with Microsoft Defender Antivirus
href: behavior-monitor.md
- name: Behavior monitoring with Microsoft Defender Antivirus on macOS
href: behavior-monitor-macos.md
- name: Detect and block potentially unwanted applications
href: detect-block-potentially-unwanted-apps-microsoft-defender-antivirus.md
- name: Enable and configure Microsoft Defender Antivirus always-on protection in Group Policy
href: configure-real-time-protection-microsoft-defender-antivirus.md
- name: Configure remediation for Microsoft Defender Antivirus detections
href: configure-remediation-microsoft-defender-antivirus.md
- name: About scheduled Microsoft Defender Antivirus scans
href: schedule-antivirus-scans.md
items:
- name: Schedule scans using Group Policy
href: schedule-antivirus-scans-group-policy.md
- name: Schedule scans using PowerShell
href: schedule-antivirus-scans-powershell.md
- name: Schedule scans using WMI
href: schedule-antivirus-scans-wmi.md
- name: Full scan best practices
href: mdav-scan-best-practices.md
- name: Use limited periodic scanning in Microsoft Defender Antivirus
href: limited-periodic-scanning-microsoft-defender-antivirus.md
- name: Protect Dev Drive using performance mode
href: microsoft-defender-endpoint-antivirus-performance-mode.md
- name: Compatibility with other security products
href: microsoft-defender-antivirus-compatibility.md
- name: Defender for Endpoint passive mode
href: microsoft-defender-passive-mode.md
- name: Microsoft Defender Antivirus and third-party antivirus solutions without
Defender for Endpoint
href: defender-antivirus-compatibility-without-mde.md
displayName: Microsoft Defender Antivirus and non-Microsoft
antivirus/antimalware solutions, Antivirus protection without Defender for
Endpoint
- name: Find malware detection names for Microsoft Defender for Endpoint
href: find-defender-malware-name.md
- name: Microsoft Defender Antivirus security intelligence and product updates
href: microsoft-defender-antivirus-updates.md
items:
- name: Previous versions for technical upgrade support only
href: msda-updates-previous-versions-technical-upgrade-support.md
- name: Manage the sources for Microsoft Defender Antivirus protection updates
href: manage-protection-updates-microsoft-defender-antivirus.md
- name: Manage the schedule for when protection updates should be downloaded and applied
href: manage-protection-update-schedule-microsoft-defender-antivirus.md
- name: Manage gradual rollout process for Microsoft Defender updates
href: manage-gradual-rollout.md
- name: Configure gradual rollout process for Microsoft Defender updates
href: configure-updates.md
- name: Ring deployment
items:
- name: Overview
href: microsoft-defender-antivirus-ring-deployment.md
- name: Intune and Microsoft Update
href: microsoft-defender-antivirus-ring-deployment-intune-microsoft-update.md
- name: Configuration Manager and WSUS
href: microsoft-defender-antivirus-ring-deployment-sscm-wsus.md
- name: Group Policy and Microsoft Update
href: microsoft-defender-antivirus-ring-deployment-group-policy-microsoft-update.md
- name: Group Policy and network share
href: microsoft-defender-antivirus-ring-deployment-group-policy-network-share.md
- name: Group Policy and WSUS
items:
- name: Pilot ring
href: microsoft-defender-antivirus-pilot-ring-deployment-group-policy-wsus.md
- name: Production ring
href: microsoft-defender-antivirus-production-ring-deployment-group-policy-wsus.md
- name: Appendices for ring deployment using Group Policy and Windows Server Update Services (WSUS)
href: microsoft-defender-antivirus-ring-deployment-group-policy-wsus-appendices.md
- name: Manage Microsoft Defender Antivirus updates and scans for endpoints that are out of date
href: manage-outdated-endpoints-microsoft-defender-antivirus.md
- name: Manage event-based forced updates
href: manage-event-based-updates-microsoft-defender-antivirus.md
- name: Manage updates for mobile devices and virtual machines (VMs)
href: manage-updates-mobile-devices-vms-microsoft-defender-antivirus.md
- name: Manage Microsoft Defender Antivirus for your organization
href: configuration-management-reference-microsoft-defender-antivirus.md
items:
- name: Use Microsoft Intune to manage Microsoft Defender Antivirus
href: use-intune-config-manager-microsoft-defender-antivirus.md
- name: Use Microsoft Defender for Endpoint Security Settings Management to manage
Microsoft Defender Antivirus
href: mde-security-settings-management.md
displayName: Use Microsoft Defender for Endpoint Security Settings Management to
manage Microsoft Defender Antivirus MDE Attach MDE Attach v2
- name: Use Group Policy settings to manage Microsoft Defender Antivirus
href: use-group-policy-microsoft-defender-antivirus.md
- name: Use PowerShell cmdlets to manage Microsoft Defender Antivirus
href: use-powershell-cmdlets-microsoft-defender-antivirus.md
- name: Use Windows Management Instrumentation (WMI) to manage Microsoft Defender Antivirus
href: use-wmi-microsoft-defender-antivirus.md
- name: Use the mpcmdrun.exe tool to manage Microsoft Defender Antivirus
href: command-line-arguments-microsoft-defender-antivirus.md
- name: Configure the notifications that appear on endpoints
href: configure-notifications-microsoft-defender-antivirus.md
- name: Specify whether users can locally modify Microsoft Defender Antivirus policy settings
href: configure-local-policy-overrides-microsoft-defender-antivirus.md
- name: Specify whether users can see or interact with Microsoft Defender Antivirus user interface
href: prevent-end-user-interaction-microsoft-defender-antivirus.md
- name: Deploy and report on Microsoft Defender Antivirus
href: deploy-manage-report-microsoft-defender-antivirus.md
items:
- name: Configure Microsoft Defender Antivirus in a remote desktop or virtual desktop infrastructure environment
href: deployment-vdi-microsoft-defender-antivirus.md
- name: Scans and remediation
href: review-scan-results-microsoft-defender-antivirus.md
items:
- name: Configure and run on-demand Microsoft Defender Antivirus scans
href: run-scan-microsoft-defender-antivirus.md
- name: Run and review the results of a Microsoft Defender Offline scan
href: microsoft-defender-offline.md
- name: Configure Microsoft Defender Antivirus scanning options
href: configure-advanced-scan-types-microsoft-defender-antivirus.md
- name: Restore quarantined files in Microsoft Defender Antivirus
href: restore-quarantined-files-microsoft-defender-antivirus.md
- name: Microsoft Defender Antivirus exclusions
items:
- name: Configure custom exclusions
href: configure-exclusions-microsoft-defender-antivirus.md
- name: Exclusions based on file extension and folder location
href: configure-extension-file-exclusions-microsoft-defender-antivirus.md
- name: Exclusions for files opened by processes
href: configure-process-opened-file-exclusions-microsoft-defender-antivirus.md
- name: Contextual file and folder exclusions
href: configure-contextual-file-folder-exclusions-microsoft-defender-antivirus.md
- name: Exclusions for Windows Server
href: configure-server-exclusions-microsoft-defender-antivirus.md
- name: Common mistakes to avoid
href: common-exclusion-mistakes-microsoft-defender-antivirus.md
- name: Troubleshooting mode for Defender for Endpoint
items:
- name: Get started with troubleshooting mode
href: enable-troubleshooting-mode.md
- name: Troubleshooting mode scenarios
href: troubleshooting-mode-scenarios.md
- name: Diagnostics for Microsoft Defender Antivirus
items:
- name: Microsoft Defender Core service overview
href: microsoft-defender-core-service-overview.md
- name: Microsoft Defender Core service configurations and experimentation
href: microsoft-defender-core-service-configurations-and-experimentation.md
- name: Collect diagnostic data of Microsoft Defender Antivirus
href: collect-diagnostic-data.md
- name: Troubleshooting Microsoft Defender Antivirus
items:
- name: Troubleshoot performance issues related to real-time protection
href: troubleshoot-performance-issues.md
items:
- name: Performance analyzer for Microsoft Defender Antivirus
href: tune-performance-defender-antivirus.md
- name: Performance analyzer reference
href: performance-analyzer-reference.md
- name: Troubleshoot Microsoft Defender Antivirus performance issues with Process
Monitor
href: troubleshoot-av-performance-issues-with-procmon.md
- name: Troubleshoot Microsoft Defender Antivirus performance issues with WPRUI
href: troubleshoot-av-performance-issues-with-wprui.md
- name: Troubleshoot Microsoft Defender Antivirus performance issues
items:
- name: Review event logs and error codes to troubleshoot issues with Microsoft Defender Antivirus
href: troubleshoot-microsoft-defender-antivirus.yml
- name: Troubleshoot Microsoft Defender Antivirus while migrating from a third-party solution
href: troubleshoot-microsoft-defender-antivirus-when-migrating.yml
- name: Behavioral blocking and containment
items:
- name: Behavioral blocking and containment
href: behavioral-blocking-containment.md
- name: Client behavioral blocking
href: client-behavioral-blocking.md
- name: Feedback-loop blocking
href: feedback-loop-blocking.md
- name: UEFI scanning in Defender for Endpoint
href: uefi-scanning-in-defender-for-endpoint.md
- name: Run Microsoft Defender Antivirus in a sandbox
href: sandbox-mdav.md
- name: Early Launch Antimalware (ELAM) and Microsoft Defender Antivirus
href: elam-on-mdav.md
- name: Address false positives/negatives in Microsoft Defender for Endpoint
href: defender-endpoint-false-positives-negatives.md
- name: Manage device configuration
items:
- name: Manage endpoint security policies
href: manage-security-policies.md
- name: Deploy endpoint security policies from Intune
href: /mem/intune/protect/mde-security-integration?toc=/defender-endpoint/toc.json&bc=/defender-endpoint/breadcrumb/toc.json
- name: Increase compliance with the security baseline
href: configure-machines-security-baseline.md
- name: Optimize attack surface reduction rule deployment and detections
href: configure-machines-asr.md
- name: Built-in protection
href: built-in-protection.md