diff --git a/SharePoint/SharePointOnline/organization-assets-library.md b/SharePoint/SharePointOnline/organization-assets-library.md index 3acfd67141..d0967c8ca2 100644 --- a/SharePoint/SharePointOnline/organization-assets-library.md +++ b/SharePoint/SharePointOnline/organization-assets-library.md @@ -77,20 +77,20 @@ If your organization needs to store and manage files for all your users to use, 6. Run the following command to designate the document library as an organization assets library: ```PowerShell - Add-SPOOrgAssetsLibrary -LibraryUrl [-ThumbnailUrl ] [-OrgAssetType ] [-CdnType ] + Add-SPOOrgAssetsLibrary -LibraryUrl [-ThumbnailUrl ] [-OrgAssetType ] -CdnType Public ``` - *LibraryURL* is the absolute URL of the library to be designated as a central location for organization assets. - *ThumbnailURL* is the URL for the image file that you want to appear in the card's background in the file picker; this image must be on the same site as the library. The name publicly displayed for the library will be the organization's name. - *OrgAssetType* is either `ImageDocumentLibrary` or `OfficeTemplateLibrary`. If you don't specify the *OrgAssetType*, the library will be designated as an image library by default. - - If you don't specify the *CdnType*, it will enable a private CDN by default. + - *CdnType* is required to be set to Public [Learn more about the Add-SPOOrgAssetsLibrary cmdlet](/powershell/module/sharepoint-online/add-spoorgassetslibrary). Example: ```powershell - Add-SPOOrgAssetsLibrary -LibraryURL https://contoso.sharepoint.com/sites/branding/Assets -ThumbnailURL https://contoso.sharepoint.com/sites/branding/Assets/contosologo.jpg -OrgAssetType ImageDocumentLibrary + Add-SPOOrgAssetsLibrary -LibraryURL https://contoso.sharepoint.com/sites/branding/Assets -ThumbnailURL https://contoso.sharepoint.com/sites/branding/Assets/contosologo.jpg -OrgAssetType ImageDocumentLibrary -CdnType Public ``` > [!NOTE]