Commands › SharePoint Online

Get-SPOAppInfo

SharePoint Online Microsoft.Online.SharePoint.PowerShell Get-*

Returns all installed applications.

Quick start script

# Get-SPOAppInfo — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-SPOService -Url https://$org-admin.sharepoint.com

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

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

Syntax

Get-SPOAppInfo [[-ProductId] <Guid>] [[-Name] <String>] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Name String Specifies the application's name.
-ProductId Guid Specifies the application's GUID.

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