Set-SPEnterpriseSearchMetadataCrawledProperty

 

Applies to: SharePoint Server 2010

Topic Last Modified: 2011-08-05

Sets the properties of a metadata crawled property for a shared search application.

Syntax

Set-SPEnterpriseSearchMetadataCrawledProperty [-Identity] <CrawledPropertyPipeBind> -IsMappedToContents <Nullable> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]]

Detailed Description

The Set-SPEnterpriseSearchMetadataCrawledProperty cmdlet updates properties of a crawled property when the search functionality is initially configured and after any new crawled property is added to create the rules for the crawled property. SPEnterpriseSearchMetadataCrawledProperty represents a crawled property in the enterprise search metadata property schema.

Parameters

Parameter Required Type Description

Identity

Required

Microsoft.Office.Server.Search.Cmdlet.CrawledPropertyPipeBind

Specifies the crawled property to update.

The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid URL, in the form http://server_name; or an instance of a valid CrawledProperty object.

IsMappedToContents

Required

System.Nullable

Specifies that the crawled property is mapped to managed properties.

SearchApplication

Required

Microsoft.Office.Server.Search.Cmdlet.SearchServiceApplicationPipeBind

Specifies the search application that contains the crawled property.

The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid search application name (for example, SearchApp1); or an instance of a valid SearchServiceApplication object.

AssignmentCollection

Optional

Microsoft.SharePoint.PowerShell.SPAssignmentCollection

Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.

Note

When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.

Category

Optional

Microsoft.Office.Server.Search.Cmdlet.CategoryPipeBind

Adds the crawled property to the specified metadata category.

The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid name of a metadata category (for example, MetadataCategory1); or an instance of a valid Category object.

Confirm

Optional

System.Management.Automation.SwitchParameter

Prompts you for confirmation before executing the command. For more information, type the following command: get-help about_commonparameters

PropSet

Optional

System.Nullable

Creates the new metadata property with the specified property set.

A valid GUID that specifies the property set, in the form 12345678-90ab-cdef-1234-567890bcdefgh.

VariantType

Optional

System.Nullable

Adds the crawled property as the specified variant type. For more information about valid values for this property, see VARIANT Type Constants (https://go.microsoft.com/fwlink/p/?LinkId=143322&clcid=0x409).

The type must be an integer that specifies a valid variant data type of the property set.

WhatIf

Optional

System.Management.Automation.SwitchParameter

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

Input Types

Return Types

Example

------------------EXAMPLE------------------

$searchapp = Get-SPEnterpriseSearchServiceApplication "SearchApp1"
$prop = Get-SPEnterpriseSearchMetadataCrawledProperty -Name testcrawledproperty -SearchApplication $searchapp
$prop | Set-SPEnterpriseSearchMetadataCrawledProperty -IsMappedToContents $False

This example changes the attribute that maps the crawled property to managed properties to False.