【SharePoint】Office365テナントでCDNを有効にする

f:id:tecchan365:20190731114437p:plain

Office365テナントでCDN(Content Delivery Network)を有効にする方法をご紹介います。

事前準備

SharePoint Management Shell をインストール、もしくはPowerShellギャラリーからモジュールをインストールしておいてください。

mynote365.hatenadiary.com

www.powershellgallery.com

Office365 CDNについて

Office365CDN については下記を参照ください。

docs.microsoft.com

CDN を有効にする

PowerShell で以下のコマンドを実行し、SharePointに接続します。

Connect-SPOService -Url https://contoso-admin.sharepoint.com

f:id:tecchan365:20190731113825p:plain

認証画面が表示されるので、メールアドレス・パスワードを入力します。

f:id:tecchan365:20190731113707p:plain

次のコマンドを実行し、CDNを有効にします。
確認メッセージが表示されるので、「Y」と入力し、[Enter] を押します。

Set-SPOTenantCdnEnabled -CdnType Public

f:id:tecchan365:20190731114933p:plain

以上で、CDNの有効化は完了です。

CDNの設定確認

CDNの設定を確認するには、以下のコマンドを実行します。

Get-SPOTenantCdnEnabled -CdnType Public
Get-SPOTenantCdnOrigins -CdnType Public
Get-SPOTenantCdnPolicies -CdnType Public

f:id:tecchan365:20190731114229p:plain