Courseiva
Prepare infrastructure for deviceseasyMultiple ChoiceObjective-mapped

MD-102 Prepare infrastructure for devices Practice Question

Exhibit

WmiContext: root\cimv2
Query: SELECT * FROM Win32_EncryptableVolume WHERE ProtectionStatus = 0

Refer to the exhibit. A detection script for a Win32 app in Intune uses a WMI query. The script is expected to detect if BitLocker is not enabled. What will the script return if BitLocker is enabled on the device?

⚠ Common exam trap

The trap here is that candidates mistakenly think the script returns a value (like 1 or the drive letter) when BitLocker is enabled, rather than understanding that the query's WHERE clause filters for unprotected volumes, so a successful detection (non-empty result) only occurs when BitLocker is off.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

It returns no results, indicating that BitLocker is enabled.

The WMI query in the detection script uses the `SELECT * FROM Win32_EncryptableVolume WHERE DriveLetter = 'C:' AND ProtectionStatus = 0` condition. When BitLocker is enabled, `ProtectionStatus` is 1, so no volumes match the query. The script returns no results, which Intune interprets as the application not being detected (i.e., BitLocker is enabled, so the detection condition is not met).

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • It returns the protection status as 1.

    Why it's wrong here

    The query filters for status = 0.

  • It returns the drive letter of the protected volume.

    Why it's wrong here

    The query selects volumes not protected.

  • It returns no results, indicating that BitLocker is enabled.

    Why this is correct

    No volumes match the condition when BitLocker is on.

  • It returns an error because the query is invalid.

    Why it's wrong here

    The query is valid.

Go deeper

Related to this question

About these practice questions

This MD-102 question is part of Courseiva's 942-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This MD-102 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the MD-102 exam.