Query Details
//This Query looks for office Add-in Installs CloudAppEvents | where ActionType == @"AppInstalled" //or ActionType == @"Add application." | summarize count() by tostring(parse_json(RawEventData)["AddOnName"]), Application
This query is designed to find and count the installations of Office Add-ins. Here's a simple breakdown of what it does:
Data Source: It uses the CloudAppEvents table, which contains records of various cloud application events.
Filter: It filters the records to only include events where the action type is either "AppInstalled" or "Add application." This means it's specifically looking for events related to the installation of applications or add-ins.
Summarize: It counts the number of installation events for each add-in.
Grouping: The results are grouped by the name of the add-in (extracted from the RawEventData field) and the application it was installed in.
In summary, the query provides a count of how many times each Office Add-in has been installed, grouped by the add-in name and the application.

Jay Kerai
Released: November 17, 2024
Tables
Keywords
Operators