4.4 Defender Intelligence, BitLocker Key Rotation, and KQL Device Query Troubleshooting

Key Takeaways

  • Update Microsoft Defender Antivirus security intelligence is a one-time remote action to refresh Defender threat definitions on supported Windows devices.
  • Defender quick scan and full scan look for malware, while a security intelligence update refreshes the detection content Defender uses.
  • Rotate BitLocker keys after a recovery key is used, shared, exposed, or when a device is serviced or reassigned.
  • Single-device Device query runs a supported subset of Kusto Query Language in near real time against a selected corporate-owned Windows device and depends on Windows Push Notification Services.
  • Device query for multiple devices uses collected inventory across supported corporate-owned platforms; Windows devices require a properties (inventory) catalog policy to collect inventory.
Last updated: June 2026

Security operations from Intune

The exam expects you to distinguish ongoing security policy from one-time operational action. Antivirus policy, disk encryption policy, and security baselines define desired state and are reapplied over time. Remote actions and device query help you respond to a live issue right now. Mixing these up is a common mistake: deploying a new policy will not refresh stale definitions on a device today, and running a one-time action will not maintain a setting going forward.

Three actions are especially important in the current MD-102 blueprint: update Microsoft Defender Antivirus security intelligence, rotate BitLocker recovery keys, and run a device query by using Kusto Query Language (KQL).

What to use when

Symptom or requestUseWhyFollow-up
Defender definitions are stale on a managed Windows deviceUpdate Microsoft Defender Antivirus security intelligenceRefreshes security intelligence files without waiting for the normal update cycleRun quick or full scan if compromise is suspected
The security team suspects malware on a deviceQuick scan or Full scanScans the device with Microsoft Defender AntivirusUse full scan for a deeper check, then review Defender for Endpoint signals
A BitLocker recovery key was shared with help deskRotate BitLocker keysGenerates a new recovery key for the operating system drive so the old key cannot be reusedConfirm key escrow and document the recovery event
Support needs to know whether a service is runningSingle-device Device queryQueries live device state without starting a remote control sessionUse a remote action or remediation only after confirming the state
Security needs a fleet list of unencrypted drivesDevice query for multiple devicesQueries collected inventory across supported corporate-owned devicesExport results or build a group for targeted remediation

Defender security intelligence updates

The Update Microsoft Defender Antivirus security intelligence remote action refreshes the definitions and detection content used by Microsoft Defender Antivirus. Use it when a device is online or expected to check in and the real problem is stale intelligence rather than a missing antivirus policy. The action only refreshes content; it does not perform a scan.

Do not confuse this with a scan. A scan evaluates the device for malware using the current definitions. A security intelligence update refreshes the definitions Defender relies on to detect current threats. In a live incident, a practical sequence is: update intelligence, run a quick or full scan, collect diagnostics if needed, and escalate to Microsoft Defender for Endpoint response actions (such as device isolation) when containment or deeper investigation is required.

BitLocker key rotation

BitLocker key rotation is a Windows remote action that refreshes the recovery key for the operating system drive on a BitLocker-encrypted Windows device and re-escrows the new key to Microsoft Entra ID. Use it after a recovery key is used during support, read aloud or shared with a technician, exposed in a ticket or email, or after device servicing or reassignment. Rotating invalidates the previously escrowed key so it can no longer be used to unlock the drive.

The action requires the right Intune role, or a custom role with the Rotate BitLocker keys remote-task permission, plus visibility of the device. A typical path is Devices > All devices > select the device > BitLocker key rotation > confirm. Rotation requires a supported, encrypted, online Windows device that backs up keys to Microsoft Entra ID; if the device never escrowed a key, there is nothing to rotate.

Device query with KQL

Device query lets an admin run KQL against a selected device or across collected inventory. The single-device version is near real time for supported corporate-owned Windows devices that are Intune managed and Microsoft Entra joined or hybrid joined. It uses Windows Push Notification Services (WNS) to notify the device to run the query, so blocking that dependency can cause the query to fail or never return.

Use KQL to reduce disruption. Instead of immediately remote-controlling a user's device, query the service, registry, process, event, certificate, TPM, or encryption state you need. Examples:

WindowsService
| where Name == 'WinDefend'
| project Name, State, StartMode
EncryptableVolume
| where ProtectionStatus != 'PROTECTED'
| join LogicalDrive on Device
OsVersion
| summarize DevicesCount = count() by OsVersion

Know the boundaries; the exam tests them. Device query supports only a subset of KQL operators and functions, not the full Azure Data Explorer language. Single-device query has hard limits including a 128 KB result string (results beyond that are truncated), a rate limit of 15 queries per minute, and a query input length limit of 2,048 characters. Device query for multiple devices supports Windows, supported corporate-owned Android Enterprise, iOS/iPadOS, and macOS, but Windows devices require a properties (inventory) catalog policy to collect the inventory that multi-device query reads.

A multi-device query returning no Windows results usually means that inventory policy was never assigned.

Troubleshooting path

A strong admin-action answer usually follows this order:

  1. Query first when you need evidence and the device is reachable.
  2. Sync when policy state is stale.
  3. Update intelligence when Defender content is stale.
  4. Scan or remediate when query results show a device-level issue.
  5. Rotate keys when recovery material was exposed.
  6. Reserve Wipe, Delete, or security containment for high-impact incidents with clear authorization.

This ordering favors low-impact investigation before high-impact action, which is exactly the judgment MD-102 scenario items reward.

Test Your Knowledge

A managed Windows device has outdated Microsoft Defender Antivirus definitions, but there is no evidence yet that malware is present. Which Intune remote action directly addresses the outdated definitions?

A
B
C
D
Test Your Knowledge

During a support call, a technician read a BitLocker recovery key to a user. What should the endpoint admin do after the device is recovered?

A
B
C
D
Test Your Knowledge
Multi-Select

Which statements about Intune Device query are correct?

Select all that apply

Single-device Device query can provide near real-time state from a selected supported Windows device.
Device query supports every KQL operator available in Azure Data Explorer.
Windows Push Notification Services is used to notify a Windows device for single-device query.
Device query for multiple devices can query collected inventory across supported corporate-owned platforms.
Device query is intended to replace all Remote Help sessions, even when the user needs interactive assistance.