4.1 Respond with Defender for Endpoint

Key Takeaways

  • Device isolation cuts a compromised endpoint off from the network while keeping the Microsoft Defender for Endpoint connection alive so analysts can still investigate and run Live Response
  • Automated investigation and remediation (AIR) verdicts are Malicious, Suspicious, or No threats found, and the automation level (Full vs Semi) decides whether remediation runs automatically or waits for approval
  • Live Response opens a remote shell to a device for collecting forensic artifacts and running commands without re-imaging the machine
  • App restriction (restrict app execution) limits a device to Microsoft-signed binaries via Windows Defender Application Control, a lighter containment step than full isolation
  • The unified incident queue at security.microsoft.com correlates Defender for Endpoint alerts with other Defender XDR workloads into a single incident with a combined attack story
Last updated: May 2026

Why Endpoint Response Matters on SC-200

The Respond to security incidents domain is 35-40% of the SC-200 exam, and Microsoft Defender for Endpoint (MDE) is where most hands-on response actions live. Expect scenario questions that hand you an incident and ask which single action contains the threat with the least disruption. Knowing exactly what isolate, restrict, collect, and Live Response each do — and what they do not do — is the difference between two plausible-looking answers.

All response work happens in the unified Microsoft Defender portal at security.microsoft.com. Microsoft Defender XDR (Extended Detection and Response) correlates signals from endpoint, identity, email, and cloud apps into one incident.

The Incident and Alert Queue

Alerts are individual detections. An incident is a container that groups related alerts, devices, users, and mailboxes into one attack story. Defender XDR correlates automatically, so a single phishing-to-ransomware chain becomes one incident, not twenty alerts.

ConceptWhat it isWhere you triage it
AlertOne detection (e.g., suspicious PowerShell)Alerts queue
IncidentCorrelated group of alerts + assetsIncidents queue
SeverityInformational → Low → Medium → HighUsed to prioritize
ClassificationTrue positive / Informational expected / False positiveSet when resolving
DeterminationSpecific cause (e.g., Malware, Phishing)Feeds tuning + AIR

When you resolve an incident, set classification and determination. These feed automation tuning and improve future AIR decisions, so a question about "how do you reduce repeat false positives" often points here.

Investigating a Device

Open the device page to reach the device timeline — a chronological event stream of processes, files, network connections, registry changes, and logon events. This is the primary forensic surface for endpoint investigation.

  • Timeline — raw events, filterable by event type and date
  • Security recommendations / discovered vulnerabilities — surfaces from Defender Vulnerability Management (covered in 4.3)
  • Software inventory — installed apps and versions
  • Alerts — detections involving this device

From the device page you launch the response actions below.

Device Response Actions

These are the high-frequency exam facts. Memorize what each action contains and what it preserves.

ActionEffectKey nuance
Isolate deviceCuts network access for the deviceDefender for Endpoint connection stays up so you can still investigate; Selective isolation keeps Outlook/Teams/Skype allowed
Restrict app executionOnly Microsoft-signed binaries may runUses Windows Defender Application Control; lighter than full isolation, app keeps device online
Run antivirus scanTriggers a Microsoft Defender Antivirus scanQuick or Full; remote-initiated
Collect investigation packageGathers forensic artifacts into a downloadable ZIPAutoruns, installed programs, network connections, prefetch, etc.
Initiate automated investigationManually starts an AIR playbook on the deviceUseful when auto-trigger did not fire
Initiate Live ResponseOpens a remote command shell to the deviceForensics + remediation without re-imaging
Stop and quarantine fileStops the running file and quarantines it across the orgActs on the file's hash org-wide
Add indicatorBlocks a file/IP/URL/cert org-wideCustom indicator, allow or block

Isolation vs Restriction (a classic distractor pair)

  • Isolate = network containment. The host cannot talk to other systems; the attacker loses lateral movement and C2. Best for active compromise.
  • Restrict app execution = execution containment. The host stays on the network but can only run trusted Microsoft-signed code. Best when you must keep the device reachable but stop unknown payloads.

If a question wants "contain lateral movement now," the answer is isolate. If it wants "keep the machine usable but block the malware from re-launching," the answer is restrict app execution.

Live Response

Live Response gives an analyst a remote shell on the device. It is gated by role-based access control (RBAC) and must be turned on in advanced features.

# Common Live Response commands
getfile C:\Users\bob\Downloads\invoice.exe   # pull a file for analysis
fileinfo invoice.exe                          # hash + signer metadata
processes                                     # list running processes
remediate file invoice.exe                    # remove the file
putfile triage.ps1                            # push a script from the library
run triage.ps1                                # execute a library script
connections                                   # active network connections

Live Response collects evidence and remediates without re-imaging, which makes it the answer to "investigate and clean a single host while preserving evidence."

Automated Investigation and Remediation (AIR)

AIR runs an automated playbook when a supported alert fires. It expands the investigation across related entities and assigns a verdict.

  • Verdicts: Malicious, Suspicious, or No threats found
  • Automation level (device groups):
    • Full — remediate automatically, no analyst approval
    • Semi — require approval (variants exist: core folders, non-temp folders, all folders)
    • No automated response — AIR investigates but takes no action

The Action center is where pending AIR actions wait for approval and where completed actions are audited. A question about "why didn't the malware get auto-removed" usually traces to the device group's automation level being Semi or No automated response.

Advanced Features That Change Behavior

Under Settings → Endpoints → Advanced features, several toggles affect response:

  • Automated investigation — enables AIR at all
  • Live Response / Live Response for servers / Live Response unsigned script execution
  • Allow or block file — required before custom file indicators work
  • Tamper protection — stops attackers (and misconfig) from disabling MDE
  • EDR in block mode — lets Defender for Endpoint block post-breach artifacts even when a non-Microsoft AV is primary
  • Web content filtering and Device discovery

If a custom file-block indicator "isn't working," check Allow or block file is enabled and a cloud-delivered protection prerequisite is met.

Test Your Knowledge

An analyst confirms active lateral movement from a workstation but must keep investigating the host with Live Response. Which single action best contains the threat while preserving investigation access?

A
B
C
D
Test Your Knowledge

A device group is set to the "Semi - require approval for all folders" automation level. AIR classifies a file as Malicious but it is not removed. Where does the analyst go to complete the remediation?

A
B
C
D
Test Your Knowledge

Which Defender for Endpoint response action limits a device to running only Microsoft-signed binaries while keeping it on the network?

A
B
C
D