Query Details

Intune Enrollment Statistics

Query

//Enrollment Statistics
IntuneOperationalLogs
| where  OperationName == "Enrollment"
| summarize count() by Result

Explanation

This query is looking at the IntuneOperationalLogs data and filtering for records where the OperationName is "Enrollment". It then groups the records by the Result field and counts the number of occurrences for each result.