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

SharePoint 2013 Newsfeed 没有出现的解决方法

时间:2015-01-11 12:22:38      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:sharepoint 2013

按照这个guide配置mysite:

http://technet.microsoft.com/en-us/library/ee624362(v=office.15).aspx

但是newsfeed页面就是出不来,直接显示about me:

技术分享

而且,左边都没有newsfeed的link:

 

原因是我们在配置OWA时,运行了下面的command:

 

  1: $a = New-SPUserLicenseMapping -SecurityGroup "Domain Users " –License OfficeWebAppsEdit
  2:     $a | Add-SPUserLicenseMapping
  3:     Enable-SPUserLicensing -Confirm:$false


所以解决方法就是要么Disable-SPUserLicensing,要么运行下面的command:

  1: $a = New-SPUserLicenseMapping -SecurityGroup "Domain Users " –License Enterprise
  2: $a | Add-SPUserLicenseMapping
  3: Enable-SPUserLicensing -Confirm:$false
  4: 

SharePoint 2013 Newsfeed 没有出现的解决方法

标签:sharepoint 2013

原文地址:http://blog.csdn.net/hufengwen/article/details/42609819

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