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.

Details

Rod Trent profile picture

Rod Trent

Released: July 10, 2020

Tables

IntuneOperationalLogs

Keywords

Enrollment,IntuneOperationalLogs,OperationName,Result

Operators

==wheresummarizecount()by

Actions