Commands › SharePoint Online

Get-SPOApplication

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

Returns a list of SharePoint Embedded applications in the specified tenant.

Quick start script

# Get-SPOApplication — 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-SPOApplication | Format-List

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

Syntax

Get-SPOApplication [[-OwningApplicationId] <Guid>] [[-ApplicationId] <Guid>] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-ApplicationId Guid Use this parameter to enumerate app-only permissions of the guest application id with access to the specified owning application.
-OwningApplicationId Guid Use this parameter to get details about applications registered in the specified tenant.

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