Query Details

Intune Countof Successful Enrollmentsby OS

Query

//Count of Successful Enrollments by OS
IntuneOperationalLogs 
| where OperationName == "Enrollment" and Result == "Success"
| extend Os_ = tostring(parse_json(Properties).Os)
| summarize count() by Os_

Explanation

This query counts the number of successful enrollments in Intune, categorized by the operating system used.

Details

Rod Trent profile picture

Rod Trent

Released: July 14, 2020

Tables

IntuneOperationalLogs

Keywords

IntuneOperationalLogs,Enrollment,Success,Os_

Operators

|,where,==,and,extend,tostring,parse_json,summarize,count()

Actions