Intune Enrollment Statistics
Query
//Enrollment Statistics
IntuneOperationalLogs
| where OperationName == "Enrollment"
| summarize count() by ResultExplanation
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.
Details

Rod Trent
Released: July 10, 2020
Tables
IntuneOperationalLogs
Keywords
EnrollmentIntuneOperationalLogsOperationNameResult
Operators
==wheresummarizecount()by