Gets the CopyMove farm settings or the CopyMove settings for a specific site collection.
Syntax
Get-CopyMoveSettings [[-SiteUrl] <string>] [<CommonParameters>]
|
Parameters
Parameter
|
Required
|
Type
|
Description
|
SiteUrl
|
No
|
String
|
Specifies the URL of the site collection to retrieve CopyMove settings for. Omit to get the global CopyMove farm settings.
|
Example
Get the CopyMove settings for a specific site collection and save them to an XML file.
$settings = Get-CopyMoveSettings -SiteUrl "https://teams.mydomain.net/sites/site1"
$settings | Out-File CopyMoveSiteSettings.xml
|
|