码迷,mamicode.com
首页 > 其他好文 > 详细

SharePoint自动化系列——创建MMS terms

时间:2015-12-08 17:44:00      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

PowerShell脚本实现MMS group、termSet、terms的自动化创建:

Add-PSSnapin Microsoft.SharePoint.PowerShell
function CreateTerms{
    param($siteUrl,$groupName,$termSetName,$termsCount)
    #Connect to the Metadata Service
    $taxSite = Get-SPSite $siteUrl
    $taxonomySession = Get-SPTaxonomySession -site $taxSite
    $termStore = $taxonomySession.TermStores["Managed Metadata Service"]
    $flag = $true
    foreach($group in $termStore.Groups)
    {
        if($group.name -eq $groupName)
        {
            Write-Warning "Group exists."
            $flag = $false
        }
    }
    if($flag -eq $true)
    {
        $termGroup = $termStore.CreateGroup($groupName)
        $termStore.CommitAll()
    }else
    {
        $termGroup = $termStore.Groups[$groupName]
    }
    $flag = $true
    foreach($termSet in $termGroup.termSets)
    {
        if($termSet.name -eq $termSetName)
        {
            Write-Warning "TermSet exists."
            $flag = $false
        }
    }
    if($flag -eq $true)
    {
        $termSet = $termGroup.createTermSet($termSetName)
        $termStore.CommitAll()
    }else
    {
        $termSet = $termGroup.termSets[$termSetName]
    }
    for($i=1;$i -le $termsCount;$i++)
    {
        try{
            $termSet.CreateTerm("Term"+$i,1033)
            $termStore.CommitAll()
        }catch
        {
            Write-Warning "Term exists."
        }
    }
   Read-Host } CreateTerms
-siteUrl http://xxxx -groupName xxxx -termSetName xxxx -termsCount xx

脚本保存到ps1文件,在server上右键run with PowerShell即可。

实现:在Managed Metadata Service这个service application下创建指定名字的Group,Termset以及指定数量的Terms。如果有同名情况出现会提示相应内容已存在,不会重复创建:

技术分享

SharePoint自动化系列——创建MMS terms

标签:

原文地址:http://www.cnblogs.com/LanTianYou/p/5029360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!