Get-SPUser
Applies to: SharePoint Server 2010, SharePoint Foundation 2010
Topic Last Modified: 2010-02-15
Returns the user account or accounts that match a given search criteria.
Get-SPUser [[-Identity] <SPUserPipeBind>] -Web <SPWebPipeBind> [-AssignmentCollection <SPAssignmentCollection>] [-Group <SPGroupPipeBind>] [-Limit <String>]
The Get-SPUser cmdlet returns all SharePoint user accounts that match the scope given by the Identity, Web, or Group parameters.
The Identity parameter can use the alias of a user for returning exact matches. However, a scope must be provided if the Get-SPUser cmdlet is to work.
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| Identity | Optional | Microsoft.SharePoint.PowerShell.SPUserPipeBind | Specifies the GUID or login name of the user to be returned. The type must be a valid URL, in the form http://server_name, or GUID, in the form1234-5678-9807. | ||
| Web | Required | Microsoft.SharePoint.PowerShell.SPWebPipeBind | Specifies the Web site to be used as a scope. The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid name of a Microsoft SharePoint Foundation 2010 Web site (for example, MySPSite1); or an instance of a valid SPWeb object. | ||
| 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.
| ||
| Group | Optional | Microsoft.SharePoint.PowerShell.SPGroupPipeBind | Specifies the user group to which the new user belongs. | ||
| Limit | Optional | System.String | Specifies the maximum number of users to return. The default value is 500. |
------------------EXAMPLE------------------
Get-SPUser -Web "http://zsharepoint2" -Group "Viewers"
This example returns all members of the group Viewers on the Web site http://zsharepoint2.

Note