Skip to content

Latest commit

 

History

History
136 lines (95 loc) · 4.01 KB

File metadata and controls

136 lines (95 loc) · 4.01 KB
external help file Module Name online version applicable title author ms.author ms.reviewer manager schema
sharepointonline.xml
Microsoft.Online.SharePoint.PowerShell
SharePoint Online
Set-SPOOrgAssetsLibrary
Maralesfahanpoor
maesfaha
paulac
2.0.0

Set-SPOOrgAssetsLibrary

SYNOPSIS

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
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-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
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Accepted values: ImageDocumentLibrary, OfficeTemplateLibrary
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-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
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

RELATED LINKS

Add-SPOOrgAssetsLibrary

Get-SPOOrgAssetsLibrary

Remove-SPOOrgAssetsLibrary