Forum Discussion
theeley
Nov 25, 2020Copper Contributor
Display user name in KQL Query
Hello, Running a weekly session duration query so we can check in on our VDI users. Boss wants their actual name (AD Display Name) in this report. For the life of me, I cannot get this report ...
davinelm
Apr 29, 2022Copper Contributor
Just curious, did you ever figure this one out? Im running into the same issue.
- Clive_WatsonMay 09, 2022Bronze Contributor
If you have AAD SigninLogs you can join to that to get the data? Simplified example
WVDConnections | where State == "Connected" | summarize by UserName | join (SigninLogs) on $left.UserName ==$right.UserPrincipalName | project UserName, Identity