# Chrome Installed Apps Counts - [Chrome Policies](#chrome-policies) - [API documentation](#api-documentation) - [Definitions](#definitions) - [Quoting rules](#quoting-rules) - [Display Chrome installed app details](#display-chrome-installed-app-details) - [Display Chrome installed apps counts](#display-chrome-installed-apps-counts) - [Display Chrome devices with a specific installed application](#display-chrome-devices-with-a-specific-installed-application) ## API documentation * https://developers.google.com/chrome/management/reference/rest/v1/customers.reports/countInstalledApps * https://developers.google.com/chrome/management/reference/rest/v1/customers.reports/findInstalledAppDevices ## Notes To use these features you must add the `Chrome Management API` to your project and authorize the appropriate scope: `Chrome Management API - read only`. ``` gam update project gam oauth create ``` To get installed app details you must authorize the scope: `Chrome Management API - AppDetails read only`. ## Definitions ``` ::= ::= extension|app|theme|hostedapp|androidapp ::= -- | (+|-)(d|w|y) | never| today ::= id: ::= /|(/)+ ::= | ``` ## Quoting rules Items in a list can be separated by commas or spaces; if an item itself contains a comma, a space or a single quote, special quoting must be used. Typically, you will enclose the entire list in double quotes and quote each item in the list as detailed below. - Items, separated by commas, without spaces, commas or single quotes in the items themselves * ```"item,item,item"``` - Items, separated by spaces, without spaces, commas or single quotes in the items themselves * ```"item item item"``` - Items, separated by commas, with spaces, commas or single quotes in the items themselves * ```"'it em','it,em',\"it'em\""``` - Items, separated by spaces, with spaces, commas or single quotes in the items themselves * ```"'it em' 'it,em' \"it'em\""``` ## Display Chrome installed app details ``` gam info chromeapp android|chrome|web [formatjson] ``` By default, Gam displays the information as an indented list of keys and values. * `formatjson` - Display the fields in JSON format. ## Display Chrome installed apps counts ``` gam show chromeapps [(ou )|(ou_and_children )| (ous )|(ous_and_children )] [filter ] [orderby appname|apptype|installtype|numberofpermissions|totalinstallcount] [formatjson] ``` By default, Gam displays the information as an indented list of keys and values. * `formatjson` - Display the fields in JSON format. ``` gam print chromeapps [todrive *] [(ou )|(ou_and_children )| (ous )|(ous_and_children )] [filter ] [orderby appname|apptype|installtype|numberofpermissions|totalinstallcount] [formatjson [quotechar ]] [delimiter ] ``` Use these options to select Chrome devices; if none are chosen, all Chrome devices in the account are selected. - `ou ` - Select devices directly in the OU `` - `ou_and_children ` - Select devices in the OU `` and its sub OUs - `ous ` - Select devices directly in the OUs `` - `ous_and_children ` - Select devices in the OUs `` and their sub OUs - `filter ` - The minimum `last_active_date` for the devices By default, Gam displays the information as columns of fields; the following option causes the output to be in JSON format, * `formatjson` - Display the fields in JSON format. By default, when writing CSV files, Gam uses a quote character of double quote `"`. The quote character is used to enclose columns that contain the quote character itself, the column delimiter (comma by default) and new-line characters. Any quote characters within the column are doubled. When using the `formatjson` option, double quotes are used extensively in the data resulting in hard to read/process output. The `quotechar ` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output. `quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used. ## Display Chrome devices with a specific installed application ``` gam show chromeappdevices appid apptype [(ou )|(ou_and_children )| (ous )|(ous_and_children )] [start ] [end ] [orderby deviceid|machine] [formatjson] ``` Use these options to select Chrome devices; if none are chosen, all Chrome devices in the account are selected. - `ou ` - Select devices directly in the OU `` - `ou_and_children ` - Select devices in the OU `` and its sub OUs - `ous ` - Select devices directly in the OUs `` - `ous_and_children ` - Select devices in the OUs `` and their sub OUs - `start ` - The minimum `last_active_date` for the devices - `end ` - The maximum `last_active_date` for the devices By default, Gam displays the information as an indented list of keys and values. * `formatjson` - Display the fields in JSON format. ``` gam print chromeappdevices [todrive *] appid apptype )|(ou_and_children )| (ous )|(ous_and_children )] [start ] [end ] [orderby deviceid|machine] [formatjson [quotechar ]] ``` Use these options to select Chrome devices; if none are chosen, all Chrome devices in the account are selected. - `ou ` - Select devices directly in the OU `` - `ou_and_children ` - Select devices in the OU `` and its sub OUs - `ous ` - Select devices directly in the OUs `` - `ous_and_children ` - Select devices in the OUs `` and their sub OUs - `start ` - The minimum `last_active_date` for the devices - `end ` - The maximum `last_active_date` for the devices By default, Gam displays the information as columns of fields; the following option causes the output to be in JSON format, * `formatjson` - Display the fields in JSON format. By default, when writing CSV files, Gam uses a quote character of double quote `"`. The quote character is used to enclose columns that contain the quote character itself, the column delimiter (comma by default) and new-line characters. Any quote characters within the column are doubled. When using the `formatjson` option, double quotes are used extensively in the data resulting in hard to read/process output. The `quotechar ` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output. `quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used.