Commands › SharePoint Online

Set-SPOTenantCdnPolicy

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

Sets the content delivery network (CDN) policies at the tenant level.

Quick start script

# Set-SPOTenantCdnPolicy — 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-SPOTenantCdnPolicy
$before | Format-List

# 3. Make the change
Set-SPOTenantCdnPolicy -CdnType <SPOTenantCdnType> -PolicyType <SPOTenantCdnPolicyType> -PolicyValue <String>

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

Syntax

Set-SPOTenantCdnPolicy -PolicyType <SPOTenantCdnPolicyType> -PolicyValue <String> -CdnType <SPOTenantCdnType>
 [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-CdnType SPOTenantCdnType yes The CdnType parameter specifies the CDN type. The valid values are Public or Private.
-PolicyType SPOTenantCdnPolicyType yes The PolicyType specifies the type of policy to set.
-PolicyValue String yes A String representing the value of the policy type defined by the PolicyType parameter.

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