Everyone is talking about Microsoft Teams at this time. Me too. So I decided to focus more and more on this cloud technology, in particular the automation of it. In this blog post I will show you how you can get a list of all your teams, team members and team channels of your tenant at once to get a perfect overview of your environment. Let’s slip into it.
The Objective
We want to see this screen. A nice overview of all teams, team users and team channels.

The Code
Copy the code below into PowerShell ISE or Visual Studio Code and run it. The code will detect whether the MSTeams Module is installed. If it is not installed, the script will install the right module for you.
<#
.SYNOPSIS
Lists all Microsoft Teams by name, team members and team channels.
.DESCRIPTION
Copy this code into an editor of your choosing
(recommended: PowerShell ISE or VS Code)
.NOTES
Author: Patrick Gruenauer | Microsoft MVP PowerShell
Web: https://sid-500.com
#>
# Check if Teams Module is installed. If not, it will be installed
If (-not (Get-Module -ListAvailable | Where-Object Name -eq 'MicrosoftTeams' ))
{
Install-Module -Name MicrosoftTeams -Force -AllowClobber
}
# Connect to Microsoft Teams
Connect-MicrosoftTeams
# List all Teams and all Channels
$ErrorActionPreference = "SilentlyContinue"
$allteams = Get-Team
$object = @()
foreach ($t in $allteams) {
$members = Get-TeamUser -GroupId $t.GroupId
$owner = Get-TeamUser -GroupId $t.GroupId -Role Owner
$channels = Get-TeamChannel -GroupId $t.GroupId
$object += New-Object -TypeName PSObject -Property ([ordered]@{
'Team'= $t.DisplayName
'GroupId' = $t.GroupId
'Owner' = $owner.User
'Members' = $members.user -join "`r`n"
'Channels' = $channels.displayname -join "`r`n"
})
}
Write-Output $object
That’s it for today. Thank you for reading this article.
See also
PowerShell: Enumeration with the Enum Statement
The enum statement can be used to declare an enumeration. Microsoft describes this statement as follows: The enum statement allows you to create a strongly typed set of labels. That enumeration can be used in the code without having to parse or check for spelling errors. Enumerations are internally represented as integers with a starting value of…
Empty the Recycle Bin with PowerShell and the Task Scheduler
In this post I will show you how to empty the recycle bin automatically. For this I will use PowerShell and Scheduled PowerShell Jobs. So I will show two ways how to do this (second one is recommended). Option 1: Task Scheduler The Task Scheduler is a feature in Microsoft Windows. We create a file…
How to create a PowerShell Module with multiple Functions
In this blog post, I will show you how to create a module with multiple functions using an example. You will see that this is not rocket science. Let’s jump in. In order to use multiple functions in a module, we have to declare them as functions to export. This also means we need a…
Categories: Microsoft 365, PowerShell
great thanks
just in this part
$object += New-Object -TypeName PSObject -Property ([ordered]@{
i know you managed the “ordered” method
but i obtainied great result without the need of order with this instead.
$object+=[pscustomobject]@{
also another question, if you export to CSV with that format you have is working? have you tried?
LikeLike
Thank you for your feedback. Csv export should be fine.
LikeLike
Learning a great deal from your blogs. Being a newbie using powershell I always tend to look forward to new posts.
I’m struggling with enabling users to Teams enterprise voice and adding them one by one a Number etc. using the SetCSOnline, GrantCSOnline voice routing policy.
LikeLiked by 1 person