Creating a Teams shared channel using Powershell

Freeman Willerton 21 Reputation points
2022-08-02T23:48:07.7+00:00

Can Teams Shared Channels be created using Powershell yet?
If so, does anyone know the syntax?

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,122 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,381 questions
0 comments No comments
{count} votes

Accepted answer
  1. Kael Yao-MSFT 37,496 Reputation points Microsoft Vendor
    2022-08-03T02:19:29.167+00:00

    Hi @Freeman Willerton

    Please have a try of the following cmdlet and see if it can work for you:

    New-TeamChannel -GroupId <id of the Team> -DisplayName <shared channel display name> -MembershipType Shared  
    

    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. Limitless Technology 39,371 Reputation points
    2022-08-03T15:27:55.667+00:00

    Hi there,

    Create a standard channel with display name as "Architecture"

    New-TeamChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -DisplayName "Architecture"

    New-TeamChannel https://learn.microsoft.com/en-us/powershell/module/teams/new-teamchannel?view=teams-ps

    I hope this information helps. If you have any questions please let me know and I will be glad to help you out.

    -------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--

    0 comments No comments