0

我正在尝试编写一个 powershell 脚本,该脚本查看用户定义的变量并更新列表中与该值匹配的每个项目的企业关键字。

例如,假设您在 SP 中有一个页面,其中包含托管元数据关键字:new、fresh、clean 我想要一个脚本来询问用户他们想要换出什么关键字。因此,用户可以将变量指定为:fresh,将另一个变量指定为:fresher,它将使用关键字fresher 将任何项目更新为fresher。

这是我以前使用过的,但现在不起作用,因为有多个值:

Add-PSSnapin Microsoft.SharePoint.PowerShell -EA SilentlyContinue
$webURL = <MY SP URL>
$listName = <MY LIST NAME>
$web = Get-SPWeb $webURL
$list = $web.Lists[$listName]
$listitems = $list.items 
$session = Get-SPTaxonomySession -Site $web.Site
$termStore = $session.TermStores["Managed Metadata Service"]
$group = $termStore.Groups["Resources"]
$termset = $group.TermSets["Wiki Categories"]
$terms = $termSet.GetTerms(100)
$wiki1 = read-host "Enter the wiki category you want to update"
$wiki2 = read-host "Enter the replacement wiki category"

$term = $terms | ?{$_.name -eq $wiki2}


Foreach($item in $listitems) 
{$wiki = $item["Wiki Categories"]
    if($wiki.label -eq $term) 
    { 
        $spitem = [Microsoft.SharePoint.SPListItem]$item;
    $taxfield = [Microsoft.SharePoint.Taxonomy.TaxonomyField]$spitem.Fields["Wiki Categories"]
        $taxfield.SetFieldValue($spitem, $term)

    $spitem.Update() 
    $spitem.File.Publish("True")
    } 
}

我很确定问题出在这一行:

$term = $terms | ?{$_.name -eq $wiki2}

而这一行:

$taxfield.SetFieldValue($spitem, $term)
4

1 回答 1

0

问题是您将TermCollection ($term) 传递给SetFieldValue,您应该在其中传递TaxonomyFieldValueCollection

您可以像这样转换它们:

$taxfield = $spitem.Fields["Wiki Categories"]

$tfvc = new-object -typename Microsoft.SharePoint.Taxonomy.TaxonomyFieldValueCollection -argumentlist $taxfield;

foreach($t in $ term)
{
   $tfv = new-object -typename Microsoft.SharePoint.Taxonomy.TaxonomyFieldValue -argumentlist $taxfield
   $tfv.TermGuid = $t.Id
   $tfv.Label = $t.Name
   $tfvc.Add($tfv)
}
...
$taxfield.SetFieldValue($spitem, $tfvc)
于 2013-01-17T02:26:15.490 回答