Set-SPOOrgAssetsLibrary

Updates information for a library that is designated as a location for organization assets.

Syntax

Set-SPOOrgAssetsLibrary
   -LibraryUrl <String>
   [-ThumbnailUrl <String>]
   [-OrgAssetType <OrgAssetType>]
   [<CommonParameters>]

Description

The Set-SPOOrgAssetsLibrary cmdlet updates information for a library that is designated as a location for organization assets. Updating the thumbnail URL and OrgAssetType are currently supported.

Examples

Example 1

This example updates the thumbnail URL publicly displayed for the library to contosologo2.jpg.

Set-SPOOrgAssetsLibrary -LibraryURL sites/branding/Assets -ThumbnailURL https://contoso.sharepoint.com/sites/branding/Assets/contosologo2.jpg

Example 2

This example removes the thumbnail URL that was previously set for the library.

Set-SPOOrgAssetsLibrary -LibraryURL sites/branding/Assets -ThumbnailURL ""

Example 3

This example changes the OrgAssetType to OfficeTemplateLibrary.

Set-SPOOrgAssetsLibrary -LibraryURL sites/branding/Templates -OrgAssetType OfficeTemplateLibrary

Example 4

This example changes the OrgAssetType to "ImageDocumentLibrary,OfficeTemplateLibrary".

Set-SPOOrgAssetsLibrary -LibraryURL sites/branding/Templates -OrgAssetType ImageDocumentLibrary,OfficeTemplateLibrary

Parameters

-LibraryUrl

Indicates the server relative URL of the library to be modified.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False
Applies to:SharePoint Online

-OrgAssetType

Indicates the type of content in this library. Currently supported values are "ImageDocumentLibrary" and "OfficeTemplateLibrary".

ImageDocumentLibrary is the default OrgAssetType and is best used for images. You can access the contents of this library from any site or page in the SharePoint filepicker. OfficeTemplateLibrary is the suggested type for Office files and will show up in the UI of all Office desktop apps and Office online in the templates section.

In order to benefit from both UIs you can choose "ImageDocumentLibrary,OfficeTemplateLibrary" as OrgAssetType.

Type:OrgAssetType
Accepted values:ImageDocumentLibrary, OfficeTemplateLibrary
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:SharePoint Online

-ThumbnailUrl

Indicates the URL of the background image used when the library is publicly displayed. If no thumbnail URL is indicated, the card will have a gray background.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False
Applies to:SharePoint Online