Get-SPEnterpriseSearchOwner
Published: July 16, 2012
Applies to: SharePoint Server 2013 Enterprise | SharePoint Server 2013 Standard | SharePoint Foundation 2013
Retrieves the search object owner.
Get-SPEnterpriseSearchOwner [[-Identity] <SearchObjectOwner>] -Level <SPWeb | SPSite | SPSiteSubscription | Ssa> [-AssignmentCollection <SPAssignmentCollection>] [-SPWeb <SPWebPipeBind>]
Parameters
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| Identity | Optional | Microsoft.Office.Server.Search.Administration.SearchObjectOwner | Specifies the search object owner to retrieve. | ||
| Level | Required | Microsoft.Office.Server.Search.Administration.SearchObjectLevel | Specifies whether the owner object resides at the SPWeb, SPSite, SPSite Subscription, or SSA level. | ||
| 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.
| ||
| SPWeb | Optional | Microsoft.SharePoint.PowerShell.SPWebPipeBind | Specifies the SPWeb or SPSite in which this object resides. It is only needed if Level is equal to SPWeb or SPSite. |
Detailed Description
The Get-SPEnterpriseSearchOwner cmdlet retrieves the search object owner. Get-SPEnterpriseSearchOwner provides scoping context to other cmdlets such as SPEnterpriseSearchResultItemType.
Input Types
Return Types
--------EXAMPLE--------
$tenantOwner = Get-SPEnterpriseSearchOwner -Level SPSite
This example shows how to retrieve the tenant owner of a search object at the SPSite level.
Change History
| Date | Description |
|---|---|
| July 16, 2012 | Initial publication |

Note: