Set-CopyMoveWebApplicationConfiguration

Top  Previous  Next

Sets CopyMove configuration settings for a SharePoint Web Application.

Syntax

Set-CopyMoveWebApplicationConfiguration [-Identity] <SPWebApplicationPipeBind> [-LinksListUrl <string>] [<CommonParameters>]

Parameters

Parameter

Required

Type

Description

Identity

Yes

SPWebApplicationPipeBind

SharePoint SPWebApplication object or a string object with the GUID or the URL address of the SharePoint Web Application.

LinksListUrl

No

string

Sets the URL address of the SharePoint list where CopyMove stores personal links for the destination selection tree. The links include recent destinations and pinned SharePoint sites. Default value is ~webapplication/sites/sppcopymove/Lists/UserLinks

Examples

Sets a new storage location for CopyMove user links in the Web Application https://teams.mydomain.net

Get-SPWebApplication "https://teams.mydomain.net" | Set-CopyMoveWebApplicationConfiguration -LinksListUrl "https://teams.mydomain.net/sites/copymove/lists/userlinks"

Disables CopyMove user links for all site collections in the Web Application https://teams.mydomain.net

Get-SPWebApplication "https://teams.mydomain.net" | Set-CopyMoveWebApplicationConfiguration -LinksListUrl "None"