Forum Discussion
Matching SharePoint machine ID to Intune
Thijs Lecomte I was hoping that but it doesn't appear to be the case from what I can tell. I have a machine ID like this 547f88ef-15d4-407d-88bd-75d0edf8c7bc but my Azure AD / Intune device has an ID in a similar format that is completely different.
None of my devices appear to match this string.
- Thijs LecomteMay 25, 2020Bronze ContributorCould you share the analytics query which throws the alert?
That way, I can check where the ID is coming from- endakellyMay 25, 2020Brass Contributor
Thijs Lecomte Here is the query:
OfficeActivity | where TimeGenerated > ago(15m) | where OfficeWorkload == "SharePoint" | where Operation in ("FileDeleted", "FileSyncDownloadedFull", "FolderDeleted", "FileDownloaded") | summarize count() by bin(TimeGenerated, 15m), Operation, UserId, Site_Url, ClientIP | where count_ > 100 | extend AccountCustomEntity = UserId | extend IPCustomEntity = ClientIP | extend URLCustomEntity = Site_UrlThe info generated here is the same as what I can see in the Audit Logs in Security and Compliance center.
Basically we're alerting for excessive downloads or deletions that might indicate malicious activity.
- Thijs LecomteMay 25, 2020Bronze Contributor
You have made a really interesting point. I just searched for this information in my own environment, but couldn't find anything.
Rod_Trent any chance you can chime in and give us some more insights into how we can correlate machineID from the Sharepoint logs to an AAD device?