New-SPEnterpriseSearchCrawlContentSource

 

适用于: SharePoint Server 2010

上一次修改主题: 2015-03-09

为共享的搜索应用程序创建新的爬网内容源。

Syntax

New-SPEnterpriseSearchCrawlContentSource [-Name] <String> -SearchApplication <SearchServiceApplicationPipeBind> -Type <Business | O12Business | CustomRepository | Custom | Exchange | File | LotusNotes | SharePoint | Web> [-AssignmentCollection <SPAssignmentCollection>] [-BDCApplicationProxyGroup <SPServiceApplicationProxyGroupPipeBind>] [-Confirm [<SwitchParameter>]] [-CrawlPriority <Nullable>] [-CustomProtocol <String>] [-LOBSystemSet <String[]>] [-MaxPageEnumerationDepth <Nullable>] [-MaxSiteEnumerationDepth <Nullable>] [-SharePointCrawlBehavior <Nullable>] [-StartAddresses <String>] [-Tag <String>] [-WhatIf [<SwitchParameter>]]

详细说明

New-SPEnterpriseSearchCrawlContentSource cmdlet 创建新的内容源。

有关权限及搜索 cmdlet 的最新相关信息,请参阅联机文档 (https://go.microsoft.com/fwlink/?LinkId=163185)。

Parameters

参数 是否必需 类型 说明

Name

必需

System.String

指定要创建的内容源的名称。

键入的内容必须是有效的 ContentSource 对象名称(例如,ContentSource1)。

SearchApplication

必需

Microsoft.Office.Server.Search.Cmdlet.SearchServiceApplicationPipeBind

指定包含内容源的搜索应用程序。

键入的值必须为 12345678-90ab-cdef-1234-567890bcdefgh 形式的有效 GUID;有效的搜索应用程序名称(如 SearchApp1);或有效 SearchServiceApplication 对象的实例。

Type

必需

System.String

指定内容源类型的名称。有效值包括 websharepointcustomlotusnotescustomfileexchange(适用于 Microsoft Exchange 公用文件夹)以及 business(适用于业务数据连接元数据存储)。

键入的值必须是有效的内容源类型名称;例如,custom。

AssignmentCollection

可选

Microsoft.SharePoint.PowerShell.SPAssignmentCollection

管理对象以便正确进行处理。使用 SPWebSPSite 等对象可能会耗用大量内存,而且在 Windows PowerShell 脚本中使用这些对象需要正确管理内存。通过使用 SPAssignment 对象,可以将对象分配给变量,然后在不需要这些对象时对它们进行处理,以释放内存。在使用 SPWebSPSiteSPSiteAdministration 对象时,如果不使用分配集合或 Global 参数,则会自动处理这些对象。

备注

在使用 Global 参数时,所有对象均包含在全局存储中。如果未立即使用对象,或未通过使用 Stop-SPAssignment 命令来处理对象,则可能会发生内存不足的情况。

BDCApplicationProxyGroup

可选

Microsoft.SharePoint.PowerShell.SPServiceApplicationProxyGroupPipeBind

指定用于 business 类型内容源的代理。此代理组必须包含默认业务数据连接元数据存储代理。

Confirm

可选

System.Management.Automation.SwitchParameter

在执行命令之前提示您确认。有关详细信息,请键入以下命令:get-help about_commonparameters

CrawlPriority

可选

System.Nullable

指定此内容源的优先级。

键入的值必须是以下整数之一:1=普通,2=高。

CustomProtocol

可选

可选

指定由自定义连接器处理的用于此内容源的自定义协议。

LOBSystemSet

可选

System.String[]

business 类型内容源指定一个以逗号分隔的业务数据连接元数据存储系统名称和系统实例名称的列表。

MaxPageEnumerationDepth

可选

System.Nullable

webcustom 类型内容源指定爬网程序从开始地址爬网到内容项可执行的页面跃点数。

MaxSiteEnumerationDepth

可选

System.Nullable

webcustom 类型内容源指定爬网程序从开始地址爬网到内容项可执行的网站跃点数。

SharePointCrawlBehavior

可选

System.Nullable

指定 sharepoint 类型内容源的爬网行为。搜索应用程序行为可以为:

指定 CrawlSites,以便只爬网特定网站集。

指定 CrawlVirtualServers,以便爬网整个服务器及该服务器上的所有网站集。

StartAddresses

可选

System.String

指定对此内容源进行爬网的起始 URL 的列表(用逗号分隔)。

键入的值必须为有效的 URL,格式为 http://server_name。

Tag

可选

System.String

指定自定义内容源设置的修改页面的 URL。指定 URL 的字符串最多可包含 1,024 个字符。

键入的值必须为有效的 URL,格式为 http://server_name。

WhatIf

可选

System.Management.Automation.SwitchParameter

输入类型

返回类型

Example

------------------示例------------------

$searchapp = Get-SPEnterpriseSearchServiceApplication "SearchApp1"
New-SPEnterpriseSearchCrawlContentSource -SearchApplication $searchapp -Type file -name somename -StartAddresses file://someserver/public

此示例创建一个 file 类型的新内容源,以爬网文件系统。

备注

必须使用 Set-SPEnterpriseSearchCrawlContentSource cmdlet 创建爬网计划,以自动爬网此内容源。