...then this might be the case.Enable-SPFeature : SiteFeedFeatureReceiver: can only be enabled on the same farm where MySites are deployed.
So just open SharePoint Management Shell as Farm/Site Collection Administrator via "Run As" and use this script:
$feat = "SiteFeed" $site = Get-SPSite http://webapp/UrlToYourSiteCollection $site | Get-SPWeb -limit all | ForEach-Object {Enable-SPFeature -Identity $feat -Url $_.Url}
That's it. Now the Site Feed Feature should be activated in all Sites unter your site collection.
No comments:
Post a Comment