New-FASTSearchMetadataCategory

Creates a new category for crawled properties.

Syntax

New-FASTSearchMetadataCategory
   -Name <String>
   -Propset <Guid>
   [<CommonParameters>]

Description

This cmdlet creates a new category for crawled properties. A category is identified by its name and its property set global unique identifier (GUID).

All crawled properties that are members of a category share the same property set GUID as the category.

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)

C:\PS>$guid = [guid]::NewGuid()
New-FASTSearchMetadataCategory -Name ExampleCategory -Propset $guid

This example creates a category named "ExampleCategory" with a new GUID generated by the system. New crawled properties can then be mapped to this category by specifying the GUID when calling New-FASTSearchMetadataCrawledProperty or Set-FASTSearchMetadataCrawledProperty.

See Set-FASTSearchMetadataCategory for descriptions of category properties.

Parameters

-Name

The name of the new category.

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

-Propset

The property set Global Unique Identifier (GUID) assigned to this category. A GUID is a 128-bit integer that has a very low probability of being duplicated. The GUID can be specified either in the form of a System.Guid object, or as a 128-bit integer with the format "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx". A crawled property can only be mapped to one category at a time.

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