Query Details

Intune Activity Types

Query

//Activity Types
IntuneAuditLogs
| summarize OperationCount=count() by OperationName 
| sort by OperationCount desc

Explanation

This query is counting the number of operations for each operation name in the IntuneAuditLogs and then sorting them in descending order based on the count.

Details

Rod Trent profile picture

Rod Trent

Released: July 10, 2020

Tables

IntuneAuditLogs

Keywords

IntuneAuditLogs,OperationCount,OperationName

Operators

summarizecountbysortdesc

Actions