Remove-FASTSearchMetadataFullTextIndexMapping

Removes a managed-property-to-full-text-index mapping.

Syntax

Remove-FASTSearchMetadataFullTextIndexMapping
      [-Mapping] <FullTextIndexMapping>
      [<CommonParameters>]

Description

This cmdlet removes the mapping of a managed property to a full text index. The managed properties are not affected, and can still be mapped to other full text indexes.

The content must be recrawled/re-fed to reflect that managed properties have been removed from full text indexes.

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----------------- (FAST Server for SharePoint 2010)

$fulltextindex = Get-FASTSearchMetadataFullTextIndex -Name content
$managedproperty = Get-FASTSearchMetadataManagedProperty -Name CreatedBy
$fulltextindexmapping = Get-FASTSearchMetadataFullTextIndexMapping -ManagedProperty $managedproperty -FullTextIndex $fulltextindex
Remove-FASTSearchMetadataFullTextIndexMapping -mapping $fulltextindexmapping

This example removes the mapping of the managed property "CreatedBy" from the full text index "content". Since the cmdlet takes an object of the mapping, the example first retrieves the mapping using Get-FASTSearchMetadataFullTextIndexMapping.

Parameters

-Mapping

An object representing the full text index mapping to be removed.

Type:FullTextIndexMapping
Aliases:FullTextIndexMapping, M
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010