Get-FASTSearchMetadataCrawledPropertyMapping
Retrieves a list of crawled properties mapped to a managed property.
Syntax
Get-FASTSearchMetadataCrawledPropertyMapping
[-Name] <String>
[<CommonParameters>]
Get-FASTSearchMetadataCrawledPropertyMapping
-ManagedProperty <ManagedProperty>
[<CommonParameters>]
Description
This cmdlet retrieves a list of the crawled properties that are mapped to a managed property. The managed property can be specified with the Name parameter or by a ManagedPropertyImpl object as returned by Get-FASTSearchMetadataManagedProperty (using the ManagedProperty parameter).
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (https://go.microsoft.com/fwlink/?LinkId=163227).
Examples
---------------EXAMPLE 1-----------------
C:\PS>Get-FASTSearchMetadataCrawledPropertyMapping -Name title
This example returns a list of crawled properties that are mapped to the managed property named "title".
---------------EXAMPLE 2-----------------
$managedproperty = Get-FASTSearchMetadataManagedProperty -name title
Get-FASTSearchMetadataCrawledPropertyMapping -ManagedProperty $managedproperty
This example first retrieves a ManagedPropertyImpl object, and then uses it to look up the corresponding crawled property mappings. It returns all crawled properties that are set up to map content into this managed property.
---------------EXAMPLE 3-----------------
$crawledproperty = Get-FASTSearchmetadataCrawledProperty -name title
$crawledproperty.GetMappedManagedProperties()
These commands are the opposite of Get-FASTSearchMetdataCrawledPropertyMapping; they find all managed properties that have a mapping for a specific crawled property. This is useful when assessing how modifying a crawled property will impact the search index.
Parameters
-ManagedProperty
The managed property object for finding crawled properties.
Type: | ManagedProperty |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |
-Name
The name of a managed property for finding crawled properties.
Type: | String |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |