Saturday, June 14, 2014

the push notifications feature is not activated on the site sharepoint 2013

the push notifications feature is not activated on the site sharepoint 2013 


You sometimes get the below error message when you try to use SharePoint 2013 managed client object model
"the push notifications feature is not activated on the site "

You need to the below powershell command to enable the feature related to this.


Enable-SPFeature -Identity 41e1d4bf-b1a2-47f7-ab80-d5d6cbba3092 -URL "<<site collection Url>>"

4 comments:

  1. Hi,
    I'm facing this issue in SharePoint Online. How can I execute this powershell comment in SharePoint Online.

    Thanks,
    Saravanan, R

    ReplyDelete
  2. I just had the same issue:
    http://veenstra.me.uk/2016/01/27/office-365-the-push-notifications-feature-is-not-activated-on-the-site/

    ReplyDelete
  3. Hi, I just noticed that if I have a loop first loading some object and executing and the later and assignment that was never loaded and exuted then it would fail at the 6th time

    like

    foreach (string name in names)
    {
    Web web = clientContext.Web;

    clientContext.Load(web);
    clientContext.ExecuteQuery();

    Folder f = web.Folders.GetByUrl(name);
    //no load and execute here

    }


    Hope it helps
    Niels

    ReplyDelete