Disabling the "Add real-time chat" option in SharePoint Team sites

Nishanth Chakkere Ramesh 400 Reputation points
2024-09-19T02:43:04.2066667+00:00

Hi,

What are the options available (PowerShell code, SharePoint admin center, or another Microsoft admin center) to disable or permanently hide the "Add real-time chat" option a.k.a "Teamify" that comes up in the bottom left-hand corner in SharePoint Team sites.

Please provide the PowerShell script that you may have used to disable this option.

Kind regards,

Nishanth Chakkere

Add real-time chat

Microsoft 365 and Office | SharePoint | For business | Windows
Microsoft Teams | Microsoft Teams for business | Other
{count} votes

Accepted answer
  1. Ling Zhou_MSFT 23,620 Reputation points Microsoft External Staff
    2024-09-19T07:27:14.81+00:00

    Hi @Nishanth Chakkere,

    Please try this PnP PowerShell:

    Install PnP PowerShell module for SharePoint Online.

    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link. 

    $siteURL = "https://contoso.sharepoint.com/sites/myteam"
    Connect-PnPOnline -URL $siteURL -Interactive
    Set-PnPPropertyBagValue -Key "TeamifyHidden" -Value "True"
    
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Ling Zhou_MSFT 23,620 Reputation points Microsoft External Staff
    2024-10-08T01:28:43.3033333+00:00

    Hi @Nishanth Chakkere,

    Perhaps you are asking if we can disable this Add Microsoft Teams feature?

    But unfortunately, we can't. We can only hide the Teamify option and not disable it.

    Team sites are one type of site that you can create in SharePoint Online.

    They are named as such since it’s a place where teams can collaborate with each other and even use different apps together.

    As such, there are two types of team sites:

    1. Team sites with Microsoft 365 Group
    2. Team sites without Microsoft 365 Group

    From the name itself, the type depends on whether or not the site comes with an associated Microsoft 365 Group.

    So Teamify option is designed by SharePoint, and we have no way to disable it. However, some users don't want users to be able to use this feature, so we use a PowerShell command to hide it.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.