首页 > 其他 > 详细

隐瞒SharePoint 2013 team sites里的follow按钮

时间:2014-03-22 06:10:08      阅读:358      评论:0      收藏:0      [点我收藏+]

cls
$webapps = Get-spWebApplication

foreach($webapp in $webapps)
{
        foreach($site in $webapp.Sites)
        {

             foreach($webapp in $site.AllWebs)
             {

                Disable-SPFeature –identity "a7a2793e-67cd-4dc1-9fd0-43f61581207a" -Confirm:$false -URL $webapp.url
             }
        }
}

如何找到Feature的id:

cls
Get-SPFeature –Limit ALL | Where-Object {$_.Scope –eq "Web" -and $_.CompatibilityLevel -eq "15"}

bubuko.com,布布扣

隐瞒SharePoint 2013 team sites里的follow按钮,布布扣,bubuko.com

隐瞒SharePoint 2013 team sites里的follow按钮

原文:http://www.cnblogs.com/fengwenit/p/3616036.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!