Commands › Exchange Online

Get-App

Exchange Online ExchangeOnlineManagement Get-*

View installed apps.

Quick start script

# Get-App — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-App | Format-List

# 3. Export for evidence / drift tracking
Get-App | Export-Clixml .\App-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-App [[-Identity] <AppIdParameter>]
 [-DomainController <Fqdn>]
 [-Mailbox <MailboxIdParameter>]
 [-OrganizationApp]
 [-PrivateCatalog]
 [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-Identity AppIdParameter The Identity parameter specifies the GUID of the app that you want to view. To find the GUID value of an app, run the command Get-App | Format-Table -Auto DisplayName,AppId.
-DomainController Fqdn This parameter is available only in on-premises Exchange.
-Mailbox MailboxIdParameter The Mailbox parameter specifies the identity of the mailbox where the apps are installed. You can use any value that uniquely identifies the mailbox. For example:
-OrganizationApp SwitchParameter The OrganizationApp switch includes apps that are installed for the organization (not bound to a specific user) in the results. You don't need to specify a value with this switch.
-PrivateCatalog SwitchParameter The PrivateCatalog switch includes private catalog add-ins in the results. You don't need to specify a value with this switch.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.