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

Nishanth Chakkere 40 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 Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,980 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,597 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ling Zhou_MSFT 16,745 Reputation points Microsoft Vendor
    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.


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.