按照这个guide配置mysite:

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

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

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

而且,左边都没有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: 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2022-01-10
  • 2021-09-02
  • 2021-12-25
  • 2021-11-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-04
  • 2021-05-14
  • 2021-07-09
相关资源
相似解决方案