Skip to Content
⚠️Site is undergoing a platform migration, there will be broken links and missing content. Please report any issues you find on GitHub⚠️

PowerShell for Microsoft 365 Notes

Chapter 7.4 - Channels

Managing Channels

  • New-TeamChannel
    • Create a Channel inside of a Team
# New Channels take a few minutes to show in the Admin console $teams = Get-Team foreach($team in $teams) { New-TeamChannel -GroupId $team.GroupId -DisplayName "Weather Announcements" -Description "Incoming Weather" -MembershipType Standard }

Conclusions

  • Creating a new Channel