Get-SPSiteSubscription
Published: May 12, 2010
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.
|
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 | Reason |
|---|---|---|
|
May 12, 2010 |
Initial publication |
|

Note: