Query Details

Device Listof Devices That Are Not Bitlocker Encrypted

Query

// Show a list of devices whose the OS Drive is not bitlocker encrypted.
IntuneDevices
| where OS == "Windows"
| where EncryptionStatusString == "False"
| where Ownership == "Corporate"
| where CompliantState == "Noncompliant"
| project DeviceName, EncryptionStatusString, CompliantState

Explanation

This query is designed to generate a list of corporate-owned devices that are running the Windows operating system, but are not compliant with security protocols because their operating system drive is not encrypted with BitLocker. The resulting list will show the name of each device, its encryption status, and its compliance state.

Details

Ugur Koc profile picture

Ugur Koc

Released: July 15, 2022

Tables

IntuneDevices

Keywords

IntuneDevices,Windows,EncryptionStatusString,False,Corporate,Noncompliant,DeviceName,CompliantState

Operators

whereproject

Actions