Commands › SharePoint Online

Get-SPOTheme

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

Quick start script

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

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

Syntax

Get-SPOTheme [[-Name] <String>] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Name String The name of the theme.
-IncludeGlobalTheme SwitchParameter When specified, this cmdlet returns all global themes that are available to the tenant. This includes themes created using PowerShell as well as themes created in the Brand Center.

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