• Skip to main content
  • Skip to primary sidebar

Technipages

Tutorials and fixes for smartphone, gadget, and computer problems

  • Topics
    • Android
    • Browsers
    • Gaming
    • Hardware
    • Internet
    • iPhone
    • Linux
    • macOS
    • Office
    • Reviews
    • Software
    • Windows
    • Definitions
  • Product Reviews
  • Downloads
  • About
Stop MS Teams Users From Creating Channels and Teams

Stop MS Teams Users From Creating Channels and Teams

January 21, 2021 by Madalina Dinita 1 Comment

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

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.

You Might Also Like

  • Slack: How To Configure Which Channels Users Will Join by Default
    Slack: How To Configure Which Channels Users Will Join by…
  • Microsoft Teams: How to Connect to Skype Users
    Microsoft Teams: How to Connect to Skype Users
  • How to Migrate Skype For Business Users To Teams
    How to Migrate Skype For Business Users To Teams
  • Microsoft Teams: Prevent Users from Deleting Files
    Microsoft Teams: Prevent Users from Deleting Files
  • Fix Roku Not Adding Channels
    Fix Roku Not Adding Channels
  • How To Mute Channels on Slack
    How To Mute Channels on Slack

Filed Under: Software

Reader Interactions

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?

Did this help? Let us know!

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Recent Posts

  • 3 Ways to Choose All Files in a Folder – Windows 11
  • Apple TV+: How to Erase a Show From the Up Next List
  • How to Change the Profile Picture on Disney+
  • Local Security Policy: What Is It and How to Open It in Windows 11
  • How to Create and Erase an Alarm in Windows 11
  • 10 Best NAS Storage Device for Home and Professional Use
  • PS5 NVMe Requirements You Must Fulfill to Expand PS5 Storage
  • Steam Deck Won’t Turn On: 8 Possible Fixes You Can Try

Who’s Behind Technipages?

Baby and Daddy 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.

© Copyright 2023 Guiding Tech Media · All Rights Reserved · Privacy