Hot answers tagged managed-metadata-service
8
Firstly, you need to know that Managed Metadata Service can be responsible as a Content Type Hub. Content Type Hub is a location where you can manage and publish content type across site collection, web application and farm. One more terminology you need to know is Content Type Subscriber, which will subscribe to Content Type Hub.
Once you publish Content ...
3
If I understood the scenario correctly, you have TERM SET called Department that contains TERMS like IT, Economy.
In this case you could create new term inside the term set "Department", and name it "SUPPORT". Then you should merge the IT term to the new "SUPPORT" term.
Note! This will remove term IT, so you can no longer use IT when you create new ...
1
I have this little powershell function
you can try it out...
function SetManagedMetadaService
{
Param(
[parameter(Mandatory=$true)][string]$ServiceName,
[parameter(Mandatory=$true)][string]$HubSiteUrl
)
Write-Host "Setting contenttype hub Url"
#Get-SPServiceApplication | ForEach-Object {
# if ...
1
Run the following PowerShell to find out what the name is of your TermStore
asnp Microsoft.SharePoint.PowerShell
$tx = Get-SPTaxonomySession -Site http://<yoursiteurl>
$tx.TermStores | ft
This should list all TermStores available for the MMS SA connected to the Site Coll (for which you provides the URL in the second line)
1
I used this tool from Codeplex, and entered in the import CSV the column LCID with german language (LCID=1031). Worked smooth when transferring from SharePoint 2010 to SharePoint 2012
As a hint for german speaking areas, please keep in mind to use Unicode settings and the comma instead the semicolon as list separator, then this works smooth as silked
...
1
Make sure that you have started the Managed Metadata Web Service by going to Central Administration -> Application Management -> Service Applications -> Manage Services on Server. Ideally you need to do this before creating the service application, or you get an error. It needs to be running on at least one server in the farm.
If you create the service app ...
Only top voted, non community-wiki answers of a minimum length are eligible
