|
Get-SPAudience
The Get-SPAudience cmdlet returns back one or more audiences for a given User Profile Service Application. Get-SPAudience -UserProfileServiceApplication <SPServiceApplicationPipeBind> [-SiteSubscription [<SPSiteSubscriptionPipeBind>]] [-Identity [<String>]] [-AssignmentCollection [<SPAssignmentCollection>]] Get-SPAudience -ContextSite <SPSitePipeBind> [-Identity [<String>]] [-AssignmentCollection [<SPAssignmentCollection>]] Parameters1 Parameter | Required | Type | Description |
---|
UserProfileServiceApplication | True | SPServiceApplicationPipeBind | Specifies the service application that contains the audience to retrieve. The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid name of a service application (for example, ServiceApp1); or an instance of a valid SPServiceApplication object. | SiteSubscription | False | SPSiteSubscriptionPipeBind | Specifies the site subscription containing the audiences to retrieve. The type must be a valid URL, in the form http://server_name; a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid name of a site subscription (for example, SiteSubscription1); or an instance of a valid SiteSubscription object. | Identity | False | String | The name of the audience to retrieve. | AssignmentCollection | False | 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. When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur. |
2 Parameter | Required | Type | Description |
---|
ContextSite | True | SPSitePipeBind | Specifies the URL or GUID of the Site to use for retrieving the service context. Use this parameter when the service application is not associated with the default proxy group or more than one custom proxy groups. The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid URL, in the form http://server_name; or an instance of a valid SPSite object. | Identity | False | String | The name of the audience to retrieve. | AssignmentCollection | False | 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. When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur. |
Detailed DescriptionThe Get-SPAudience cmdlet returns back one or more audiences for a given User Profile Service Application. Copyright 2016 Falchion Consulting, LLC > For more information on this cmdlet and others: > http://blog.falchionconsulting.com/ > Use of this cmdlet is at your own risk. > Gary Lapointe assumes no liability. Examples------------------EXAMPLE 1----------------------- PS C:\> Get-SPAudience -UserProfileServiceApplication "30daa535-b0fe-4d10-84b0-fb04029d161a" -Name "Human Resources" ------------------EXAMPLE 2----------------------- PS C:\> Get-SPServiceApplication | where {$_.TypeName -eq "User Profile Service Application"} | Get-SPAudience -Name "Human Resources" ------------------EXAMPLE 3----------------------- PS C:\> Get-SPServiceApplication | where {$_.TypeName -eq "User Profile Service Application"} | Get-SPAudience
|