Edit

Share via


Get-FASTSearchMetadataCrawledPropertyMapping

Retrieves a list of crawled properties mapped to a managed property.

Syntax

Name

Get-FASTSearchMetadataCrawledPropertyMapping
    [-Name] <String>
    [<CommonParameters>]

ManagedProperty

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

Applicable: FAST Server for SharePoint 2010

The managed property object for finding crawled properties.

Parameter properties

Type:ManagedProperty
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

ManagedProperty
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

-Name

Applicable: FAST Server for SharePoint 2010

The name of a managed property for finding crawled properties.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

Name
Position:1
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.