Get-SPSiteSubscription
Published: July 16, 2012
Applies to: SharePoint Foundation 2013 | SharePoint Server 2013 Enterprise
Returns the site subscription for the given URL or all site subscriptions in the local farm.
Get-SPSiteSubscription [[-Identity] <SPSiteSubscriptionPipeBind>] [-AssignmentCollection <SPAssignmentCollection>]
Parameters
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| Identity | Optional | Microsoft.SharePoint.PowerShell.SPSiteSubscriptionPipeBind | Specifies the ID of the subscription. The type must be a valid URL, in the form http://server_name. | ||
| AssignmentCollection | Optional | Microsoft.SharePoint.PowerShell.SPAssignmentCollection | Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
| ||
| Default | Optional | System.Management.Automation.SwitchParameter | Specifies the default site subscription. Any site created without specifying a site subscription ID will be part of the default. |
Detailed Description
The Get-SPSiteSubscription cmdlet returns the site subscription for the given URL when the Identity parameter is used. If no parameter is specified, all unique site subscriptions in the farm are listed.
Input Types
Return Types
------------------EXAMPLE----------------------
$SiteSub = Get-SPSiteSubscription http://Contoso.com
$SiteSub = Get-SPSite http://contoso.com | Get-SPSiteSubscription
This example retrieves the site subscription for http://Contoso.com.
Change History
| Date | Description |
|---|---|
| July 16, 2012 | Initial publication |

Note: