Query Azure Virtual Desktop (AVD) connection logs for client versions used by users over time
This file contains 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
let startTime = ago(30d); | |
WVDConnections | |
| where TimeGenerated > startTime | |
| summarize min(TimeGenerated), max(TimeGenerated) by UserName, ClientOS, ClientType, ClientVersion | |
| sort by UserName, min_TimeGenerated |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment