Query Details

Device Number Of Devices That Are Managed By Intune Or Are Co Managed

Query

// Number of devices that are managed by Intune or are Co-managed
IntuneDevices
| where OS == "Windows"
| summarize count(DeviceName) by ManagedBy

Explanation

This query is checking the number of devices that are managed by Intune or are co-managed, but only those that are running the Windows operating system. It then groups and counts these devices based on who manages them.

Details

Ugur Koc profile picture

Ugur Koc

Released: July 18, 2022

Tables

IntuneDevices

Keywords

Number,Devices,Managed,Intune,Co-managed,OS,Windows,Count,DeviceName,ManagedBy

Operators

where==summarizecountby.

Actions