Get-FASTSearchMetadataCrawledPropertyMapping
擷取對應至 Managed 屬性的編目屬性清單。
Syntax
Get-FASTSearchMetadataCrawledPropertyMapping
[-Name] <String>
[<CommonParameters>]
Get-FASTSearchMetadataCrawledPropertyMapping
-ManagedProperty <ManagedProperty>
[<CommonParameters>]
Description
此 Cmdlet 會擷取對應至 Managed 屬性的編目屬性清單。 Managed 屬性可以使用 Name 參數或 ManagedPropertyImpl 物件指定,如Get-FASTSearchMetadataManagedProperty (使用 ManagedProperty 參數) 所傳回。
如需 FAST Search Server 2010 for SharePoint Cmdlet 的許可權和最新資訊,請參閱線上檔 (https://go.microsoft.com/fwlink/?LinkId=163227) 。
範例
---------------範例 1-----------------
C:\PS>Get-FASTSearchMetadataCrawledPropertyMapping -Name title
此範例會傳回編目屬性清單,這些屬性會對應至名為 「title」 的 Managed 屬性。
---------------範例 2-----------------
$managedproperty = Get-FASTSearchMetadataManagedProperty -name title
Get-FASTSearchMetadataCrawledPropertyMapping -ManagedProperty $managedproperty
此範例會先擷取 ManagedPropertyImpl 物件,然後使用它來查閱對應的編目屬性對應。 它會傳回設定為將內容對應到這個 Managed 屬性的所有編目屬性。
---------------範例 3-----------------
$crawledproperty = Get-FASTSearchmetadataCrawledProperty -name title
$crawledproperty.GetMappedManagedProperties()
這些命令與 Get-FASTSearchMetdataCrawledPropertyMapping 相反;他們會找到具有特定編目屬性對應的所有 Managed 屬性。 這在評估修改編目屬性對搜尋索引的影響時很有用。
參數
-ManagedProperty
用於尋找編目屬性的 Managed 屬性物件。
Type: | ManagedProperty |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |
-Name
用於尋找編目屬性的 Managed 屬性名稱。
Type: | String |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |