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

按照这个guide配置mysite:

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

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

image

而且,左边都没有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: 
原文地址:https://www.cnblogs.com/fengwenit/p/3859735.html