Enable Taxonomy Feature
If you like to use the taxonomy feature in SharePoint 2010 and try to create a Managed Metadata Column in a list or document library you may encounter the problem that this feature is not enabled by default:
At this time (Beta2 & RC) you have to activate this feature using PowerShell:
List all Features with the name *Tax*:
PS C:\> Get-SPFeature | where {$_.displayname -like "*tax*"} DisplayName Id Scope ----------- -- ----- TaxonomyFeatureStapler 415780bf-f710-4e2c-b7b0-b463c7992ef0 Farm TaxonomyTimerJobs 48ac883d-e32e-4fd6-8499-3408add91b53 WebApplication TaxonomyFieldAdded 73ef14b1-13a9-416b-a9b5-ececa2b0604c Site TaxonomyTenantAdmin 7d12c4c3-2321-42e8-8fb6-5295a849ed08 Web TaxonomyTenantAdminStapler 8fb893d6-93ee-4763-a046-54f9e640368d Farm |
Activate “TaxonomyFieldAdded”
PS C:\> Enable-SPFeature -Identity 73ef14b1-13a9-416b-a9b5-ececa2b0604c -url http://betaplace |
