我正在尝试编写一个PowerShell脚本来查看用户定义的变量,并更新列表中与该值匹配的每个项目的企业关键字。
例如,假设您在SP中有一个包含托管元数据关键字的页面:new,fresh,clean 我想要一个脚本,询问用户他们想要换出什么关键字。因此,用户可以将变量指定为:fresh和另一个变量:fresher,它会使用关键字fresh更新为更新的任何项目。
这是我之前使用的,但现在不起作用,因为有多个值:
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)
答案 0 :(得分: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)