Skip to content

Instantly share code, notes, and snippets.

@sakaldeepyadav
Last active June 5, 2020 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sakaldeepyadav/be546ee4a1177cb8715d0dede50f44d5 to your computer and use it in GitHub Desktop.
Save sakaldeepyadav/be546ee4a1177cb8715d0dede50f44d5 to your computer and use it in GitHub Desktop.
WVDCheckpoints
| where TimeGenerated > ago(7d)
| where Name == "LaunchExecutable"
| extend App = parse_json(Parameters).filename
| summarize Usage=count(UserName) by tostring(App)
| sort by Usage desc
| render columnchart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment