Get-FASTSearchMetadataManagedProperty
Applies to: SharePoint Server 2010
Retrieves a managed property with the specified name.
Syntax
Get-FASTSearchMetadataManagedProperty [[-Name] <String>]
Detailed Description
This command retrieves managed properties that match the input parameter. If wildcards are used, the command may return more than one managed property.
A managed property is a piece of information (such as title, author, etc.) that is stored for each item in the index.
See Set-FASTSearchMetadataManagedProperty for details about the managed property parameters and how to configure them.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Name |
Optional |
System.String |
The name of the managed property to retrieve. This option supports wildcards, and the matching is case-insensitive. |
Input Types
Return Types
Example
---------------EXAMPLE 1-----------------
Get-FASTSearchMetadataManagedProperty -name title
This example retrieves a managed property named “title”. It returns an object representing the managed property.
---------------EXAMPLE 2-----------------
Get-FASTSearchMetadataManagedProperty -name content*
This example returns all managed properties with names starting with “content”. It returns a list of managed property objects.
See Also
Reference
New-FASTSearchMetadataManagedProperty
Set-FASTSearchMetadataManagedProperty
Remove-FASTSearchMetadataManagedProperty