Forum Discussion

nullorempty's avatar
nullorempty
Copper Contributor
Dec 11, 2020
Solved

Disable Comments in Lists

How can we disable Comments in a list?   This is causing confusion for end-users of lists that already have a comments field.

 

  • ganeshsanap, looks like another Microsoft misstep...am I surprised? No. Am I irritated? Yep. Complete and total ignorance on their part and the list keeps growing and growing.

     

    If only someone would stop driving such bells and whistles and start driving consistency (conformity, compliance and comprehension).

  • nullorempty 

    Currently it is not possible to disable comments at site or list level. But you can disable it at tenant level as given below:

     

    You can disable comments in SharePoint online lists using PowerShell. Use below command:

     

    Set-SPOTenant -CommentsOnListItemsDisabled $true

     

    Microsoft documentationSet-SPOTenant

     

    Note: You must be a SharePoint Administrator or Global Administrator in your tenant to disable this feature using PowerShell.

     

    Answer to your 2nd question: List comments are stored with the list schema and not against individual list items.

    Additional References:

    1. How to Enable/Disable the commenting in SharePoint Online/Microsoft Lists 
    2. SharePoint Online: All you need to know about Commenting in Lists 

    Please click Mark as Best Response if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

     

    • lance-aughey's avatar
      lance-aughey
      Iron Contributor

      ganeshsanap, looks like another Microsoft misstep...am I surprised? No. Am I irritated? Yep. Complete and total ignorance on their part and the list keeps growing and growing.

       

      If only someone would stop driving such bells and whistles and start driving consistency (conformity, compliance and comprehension).

      • Andrew Goodwin's avatar
        Andrew Goodwin
        Brass Contributor
        Completely agree Lance. Another half-arsed, poorly thought out implementation. The only silver lining is that at least this time there is an off switch, unlike some other instances where we were unable to disable the functionality.
  • nullorempty 

    Hi, you can do it but only Tenant wide and not for specific sites:

    #To disable it run this command
    Connect-SPOService -Url https://contoso-admin.sharepoint.com/ 
    Set-SPOTenant -CommentsOnListItemsDisabled $true
    
    #To enable this run this command
    Connect-SPOService -Url https://contoso-admin.sharepoint.com/ 
    Set-SPOTenant -CommentsOnListItemsDisabled $true
    • nullorempty's avatar
      nullorempty
      Copper Contributor

      jcgonzalezmartin 
      any idea where the comments are stored?   from a business standpoint, some of my lists are synced with other business systems and the comments will need to be captured.


Resources