Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 430 Bytes

join.md

File metadata and controls

14 lines (12 loc) · 430 Bytes

join

let IntuneData = IntuneDevices
| where OS == 'Windows' and UserName has "Sandy"
| summarize arg_max(TimeGenerated, *) by SerialNumber
| distinct ReferenceId, UPN;
UCClient
| where TimeGenerated > ago (3d)
| join kind=innerunique   IntuneData on $left.AzureADDeviceId == $right.ReferenceId
| project TimeGenerated, DeviceName, OSEdition, OSVersion, OSServicingChannel, UPN