Created
January 15, 2024 17:36
-
-
Save Torxsmind/afcc865baa3fee0a7ef7c52f0d12c926 to your computer and use it in GitHub Desktop.
Hybrid Joined Devices on Known network
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SigninLogs | |
| | where parse_json(tostring(parse_json(NetworkLocationDetails)[0].networkNames))[0] == "Guest WiFi" | |
| | where DeviceDetail.trustType == "Hybrid Azure AD joined" | |
| | extend displayName_ = tostring(DeviceDetail.displayName) | |
| | project UserPrincipalName, displayName_ | |
| | summarize count() by UserPrincipalName, displayName_ | |
| | sort by count_ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment