Web パーツがグレー表示されたままの理由がわかりました。SPField.Update
パラメータでメソッドを使用する必要がありました$true
。
sharepoint powershell でこの問題を解決したい人のためのコード例を次に示します。
$web= Get-SPWeb your.sharepoint.site
$WikiCategory = "YourCategory"
$ColumnName = "Wiki Categories"
$session = New-Object Microsoft.SharePoint.Taxonomy.TaxonomySession($site)
$termStores = $session.TermStores
$SspId = $termStores[0].Id
function GetTermSetId($termStores)
{
foreach ($termstore in $termStores[0].Groups)
{
$TermSetId = $termstore.TermSets[$WikiCategory].Id
return $TermSetId
}
}
$TermSetId = GetTermSetId($termStores)
$contentType = $web.ContentTypes["Enterprise Wiki Page"]
$column = $web.Fields[$ColumnName]
$fieldLink = New-Object Microsoft.SharePoint.SPFieldLink($column) $contentType.FieldLinks.Add($fieldLink)
$contentType.Update()
$column.SspId = $SspId
$column.TermSetId = $TermSetId
$column.Required = $false
$column.EnforceUniqueValues = $false
$column.Group = "Custom Columns"
$column.Update($true)
$web.Update()
$web.Dispose()