Commands › SharePoint Online
Set-SPOTenantCdnPolicy
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)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.