Commands › SharePoint Online

Add-SPOFileRequestBrandingProfile

SharePoint Online Microsoft.Online.SharePoint.PowerShell Add-*

Adds a branding profile for the file request feature by specifying logo and background assets from an existing organization asset library.

Quick start script

# Add-SPOFileRequestBrandingProfile — 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
Add-SPOFileRequestBrandingProfile -AssetLibraryUrl <String> | Format-List

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

Syntax

Add-SPOFileRequestBrandingProfile -AssetLibraryUrl <String> -IsPrimary <Boolean> [-LogoFileUrl <String>] [-BackgroundFileUrl <String>]
 [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-AssetLibraryUrl String yes Specifies the absolute URL of the asset library containing the branding assets.
-LogoFileUrl String Specifies the relative URL of the logo image file.
-BackgroundFileUrl String Specifies the relative URL of the background image file.
-IsPrimary Boolean Specifies if this branding profile configuration is the primary profile.

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