Commands › SharePoint Online

New-SPOServicePrioritizationBillingPolicy

SharePoint Online Microsoft.Online.SharePoint.PowerShell New-*

Creates a new billing policy for service prioritization in SharePoint Online.

Quick start script

# New-SPOServicePrioritizationBillingPolicy — 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-SPOServicePrioritizationBillingPolicy
$before | Format-List

# 3. Make the change
New-SPOServicePrioritizationBillingPolicy -AzureRegion <String> -AzureSubscriptionId <Guid> -FriendlyName <String>

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

Syntax

New-SPOServicePrioritizationBillingPolicy -AzureSubscriptionId <Guid> -ResourceGroup <String>
 -AzureRegion <String> -FriendlyName <String> [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-AzureRegion String yes Specifies the Azure region where the billing policy applies.
-AzureSubscriptionId Guid yes Specifies the unique identifier (GUID) of the Azure subscription associated with the billing policy.
-FriendlyName String yes Specifies a user-friendly name for the billing policy.
-ResourceGroup String yes Specifies the Azure resource group associated with the billing policy.

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