How to disable Microsoft Teams channel creations?
+
By default, Microsoft Teams allows any user to create or delete channels within the teams they are members of. While this feature enhances collaboration on specific topics or projects, it can lead to clutter and confusion due to the SharePoint sites of those created channels.
To address this, admins can configure Teams channel creation permissions to prevent users from creating and deleting channels in a team using the steps below:
- Navigate to Teams»Manage Team»Respective Team»Channels in the Teams admin center
- Disable the 'Add and edit channels', 'Add and edit private channels', and 'Delete channels' toggles to prevent the creation of standard channels, private channels, and the deletion of channels.
- Then, click on 'Apply'.
To block the channel creation and deletion in Microsoft Teams using the PowerShell, use the following cmdlets.
#To block users from creating channels in a team.
Set-Team -GroupId "<TeamsGroupID>" -AllowCreateUpdateChannels $false
#To restrict private channel creation in a team.
Set-Team -GroupId "<TeamsGroupID>" -AllowCreatePrivateChannels $false
#To restrict users from deleting channels in a team.
Set-Team -GroupId "<Group's object ID>" -AllowDeleteChannels $false
You can disable shared channel creation in Microsoft Teams only through an organization wide policy. This setting is particularly useful when your organization does not require any external collaboration for a specific period. You shall follow the below steps to restrict the users from creating shared channels.
- Navigate to Teams»Teams policies, then click on the 'Global (Org-wide default)' policy in the Teams admin center.
- Here, you shall disable the required options to restrict the creation of Teams shared channels and the collaboration of external users in shared channels.
For more precise management of team membership permissions that allow or block users from creating and deleting channels, review each team's permission settings at a glance using AdminDroid.