Commands › SharePoint Online

Set-SPOServicePrioritizationAppRegistration

SharePoint Online Microsoft.Online.SharePoint.PowerShell Set-*

Updates an existing app registration for service prioritization in SharePoint Online.

Quick start script

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

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-SPOServicePrioritizationAppRegistration
$before | Format-List

# 3. Make the change
Set-SPOServicePrioritizationAppRegistration -AppId <Guid>

# 4. Verify and diff
$after = Get-SPOServicePrioritizationAppRegistration
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

Set-SPOServicePrioritizationAppRegistration -AppId <Guid> [-Enabled <Boolean>] [-QuotaMultiplier <Int32>]
 [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-AppId Guid yes Specifies the unique identifier (GUID) of the app registration to update.
-Enabled Boolean Specifies whether the app registration is enabled or disabled. Accepts a Boolean value.
-QuotaMultiplier Int32 This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10.

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