Remove-FASTSearchMetadataFullTextIndex

Removes a full text index from the Microsoft FAST Search Server 2010 for SharePoint system.

Syntax

Remove-FASTSearchMetadataFullTextIndex
      -FullTextIndex <FullTextIndex>
      [-Confirm]
      [-Force]
      [-WhatIf]
      [<CommonParameters>]
Remove-FASTSearchMetadataFullTextIndex
      -Name <String>
      [-Confirm]
      [-Force]
      [-WhatIf]
      [<CommonParameters>]

Description

This cmdlet removes a full text index. The content of the index is removed and is no longer searchable. The managed properties mapped to the full text index are still available and can be mapped to other or new 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)

Remove-FASTSearchMetadataFullTextIndex -name secondarycontent

This example removes the full text index named "secondarycontent" from the FAST Search Server 2010 for SharePoint system. The cmdlet asks for confirmation as long as neither the Force parameter is used or the $ConfirmPreference environment is set to a higher value than HIGH.

---------------EXAMPLE 2----------------- (FAST Server for SharePoint 2010)

C:\PS>$index=Get-FASTSearchMetadataFullTextIndex -name secondarycontent
Remove-FASTSearchMetadataFullTextIndex -FullTextIndex $index -force

This example removes the full text index represented by the $index variable. Since the Force parameter is specified, confirmation of the index removal is not used.

Parameters

-Confirm

Activates user prompting to confirm the operation. If set, prompting is activated. If Confirm is false (-Confirm:$false), confirmation prompting is not used.

In cases where Confirm is not specified, the cmdlet will prompt if the $ConfirmPreference shell variable is equal to or greater than the ConfirmImpact setting of the cmdlet (HIGH).

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010

-Force

Overrides any user prompting settings, so that confirmation of the operation is not required.

Type:SwitchParameter
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010

-FullTextIndex

A full text index object representing the full text index to remove.

Type:FullTextIndex
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 the full text index to remove.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010

-WhatIf

Displays a message that describes the effect of the command instead of executing the command. For more information, type the following command: get-help about_commonparameters

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010