Skip to content
LogoTechnipages
LogoTechnipages
  • Topics
        • Android
        • Browsers
        • Gaming
        • Hardware
        • Internet
        • iPhone
        • Linux
        • macOS
        • Office
        • Reviews
        • Software
        • Windows
        • Definitions
        • All Recent Posts
  • Product Reviews
  • About

Stop MS Teams Users From Creating Channels and Teams

Madalina DinitaJanuary 21, 2021 Comments (1)

Do you want to learn how you can stop Microsoft Teams users from creating new channels or teams? Then this guide is for you.

Contents

  • 1 Microsoft Teams: Prevent Users From Creating Channels
    • 1.1 Method 1 –  Microsoft Teams Free
    • 1.2 Method 2 – Office 365 Groups
      • 1.2.1 How to Block Office 365 From Creating New Teams

Microsoft Teams: Prevent Users From Creating Channels

Method 1 –  Microsoft Teams Free

As a team owner, you can stop team members from creating new channels or teams.

  1. Select your team, click on More options and navigate to Manage Team → Settings.edit team settings microsoft teams
  2. Expand Member Permissions.
  3. Untick the checkbox that says Allow members to create and update channels.

don't allow users to create new channel microsoft teams

After you uncheck this option, the members of your team won’t be able to create new private channels.

However, keep in mind that you cannot hide the Join or create a Team button inside of the Teams client. The option remains visible on the app interface even if you lock it. Of course, when a user clicks on that button in an attempt to create a new team, they will get denied.

Method 2 – Office 365 Groups

On the other hand, things get a bit more complicated if you’re an IT admin and you want to block Office 365 users from creating new teams.

By the way, you need to install the Azure AD Module to do that. More specifically, you need the AzureADPreview. To do this, launch PowerShell with admin rights and run the Install-module AzureADPreview command.

How to Block Office 365 From Creating New Teams

  1. Navigate to your Office 365 Admin Center.
  2. Then select Groups → Add a Group.
  3. Select Security as the Group type. Set up the group, name it, add a quick description, and hit the Create Group button.
  4. Select Members and start adding all the users you want to be able to create new teams and groups.
    • Note: Users that are not part of the Security group won’t be able to create Microsoft Teams groups.
  5. And here comes the tricky part. If you already installed AzureAD Module, you need to uninstall it before you can run AzureADPreview. Launch PowerShell and run the Uninstall-Module AzureAD command. Only then can you install AzureADPreview.
  6. Then run the PowerShell script below. Don’t forget to replace <SecurityGroupName> with the name the security group you created earlier.

PowerShell Script to Use:

$GroupName = "<SecurityGroupName>"
$AllowGroupCreation = $False

Connect-AzureAD

$settingsObjectID = (Get-AzureADDirectorySetting | Where-object -Property Displayname -Value “Group.Unified” -EQ).id
if(!$settingsObjectID)
{
$template = Get-AzureADDirectorySettingTemplate | Where-object {$_.displayname -eq “group.unified”}
$settingsCopy = $template.CreateDirectorySetting()
New-AzureADDirectorySetting -DirectorySetting $settingsCopy
$settingsObjectID = (Get-AzureADDirectorySetting | Where-object -Property Displayname -Value “Group.Unified” -EQ).id
}

$settingsCopy = Get-AzureADDirectorySetting -Id $settingsObjectID
$settingsCopy[“EnableGroupCreation”] = $AllowGroupCreation

if($GroupName)
{
$settingsCopy[“GroupCreationAllowedGroupId”] = (Get-AzureADGroup -SearchString $GroupName).objectid
}
else {
$settingsCopy[“GroupCreationAllowedGroupId”] = $GroupName
}
Set-AzureADDirectorySetting -Id $settingsObjectID -DirectorySetting $settingsCopy

(Get-AzureADDirectorySetting -Id $settingsObjectID).Values

For more information, you can check out Microsoft’s support page.

Using this method also brings another advantage. When Office 365 users create an Outlook group, the system no longer creates a Team associated with it.

Categories: Software

Author Madalina Dinita

Madalina has been a Windows fan ever since she got her hands on her first Windows XP computer. She is interested in all things technology, especially emerging technologies -- AI and DNA computing in particular.

You Might Also Like

  • Adobe Reader Logo Header

    Adobe Reader: Change Default Zoom Setting

    Mitch BartlettSoftware
  • iTunes: How to Copy Playlists to iPhone, iPad, or iPod

    Mitch BartlettSoftware
  • Adobe Reader Logo Header

    Acrobat Reader: Fix “There was an error opening this document. Access denied.”

    Mitch BartlettSoftware
  • microsoft-word-pasting-not-working

    How to Add a Dotted Line to Any Word Document

    Judy SanhzSoftware

Comments

  1. Melissa N. says:
    February 25, 2022 at 2:24 pm

    Is there a way to do Method 1 at the global/tenant level?

Leave a Reply

Your email address will not be published. Required fields are marked *

  • service outage message on Xbox

    What to Do With a Service Outage Message on Xbox

  • signs your hdd is failing

    Signs That Your HDD Is Failing

  • how to fix error code 0x800705b4 in windows 11

    How to Fix Error Code 0x800705b4 in Windows 11

  • does chromebook need an antivirus

    Does Chromebook Need an Antivirus?

  • top vpns

    Top 5 VPNs to Keep Your Information Private in 2026

profile pic

The Experts Behind Technipages

My name is Mitch Bartlett. I've been working in technology for over 20 years in a wide range of tech jobs from Tech Support to Software Testing. I started this site as a technical guide for myself and it has grown into what I hope is a useful reference for all.

Learn More

technipages logo white
linkedin icon

Technipages is part of Guiding Tech Media, a leading digital media publisher focused on helping people figure out technology. Learn more about our mission and team here.

© 2026 Guiding Tech Media All Rights Reserved

  • About Us
  • Contact
  • Terms of Use
  • Privacy Policy

© 2026 Guiding Tech Media All Rights Reserved

Information from your device can be used to personalize your ad experience.
Do not sell my personal information.

Last Updated on January 21, 2021 by Mitch Bartlett