Display all items in include and exclude lists by using Windows PowerShell (FAST Search Server 2010 for SharePoint)
Published: May 12, 2010
This topic explains how to display all items in a property extraction include or exclude list in Microsoft FAST Search Server 2010 for SharePoint by using Windows PowerShell.
In this topic:
-
Display all items in a property extraction include list by using Windows PowerShell
-
Display all items in a property extraction exclude list by using Windows PowerShell
Display all items in a property extraction include list by using Windows PowerShell
-
Verify that you meet the following minimum requirements: You are a member of the FASTSearchAdministrators local group on the computer where FAST Search Server 2010 for SharePoint is installed.
-
On the Start menu, click All Programs.
-
Click Microsoft FAST Search Server 2010 for SharePoint.
-
Click Microsoft FAST Search Server 2010 for SharePoint shell.
-
At the Windows PowerShell command prompt, type the following command(s):
$entityExtractorContext = New-Object -TypeName Microsoft.SharePoint.Search.Extended.Administration.EntityExtractorContext $entityExtractors = $entityExtractorContext.TermEntityExtractors foreach ($entityExtractor in $entityExtractors) { $entityExtractor.Inclusions }
See also
Display all items in a property extraction exclude list by using Windows PowerShell
-
Verify that you meet the following minimum requirements: You are a member of the FASTSearchAdministrators local group on the computer where FAST Search Server 2010 for SharePoint is installed.
-
On the Start menu, click All Programs.
-
Click Microsoft FAST Search Server 2010 for SharePoint.
-
Click Microsoft FAST Search Server 2010 for SharePoint shell.
-
At the Windows PowerShell command prompt, type the following command(s):
$entityExtractorContext = New-Object -TypeName Microsoft.SharePoint.Search.Extended.Administration.EntityExtractorContext $entityExtractors = $entityExtractorContext.TermEntityExtractors foreach ($entityExtractor in $entityExtractors) { $entityExtractor.Exclusions }
See also
Change History
| Date | Description |
|---|---|
| May 12, 2010 | Initial publication |
