Knowing who owns any Teams group is a key part of Teams administration. In this article, we'll explore different ways to find out who the owners of a Teams group are.





Ensure that you have the Teams PowerShell module installed. For more information, refer to the Install Microsoft Teams PowerShell Module guide.
Connect-MicrosoftTeams
Get-Team cmdlet combined with the -DisplayName parameter. This command would look something like this:Get-Team -DisplayName “Teams Display Name”
Replace “Teams Display Name” with the actual display name of the team you want to query.
Get-TeamUser cmdlet. The structure of the command is as follows:Get-TeamUser -GroupId <String> -Role Owner Replace <String> with the actual Group ID you obtained from the previous command.
Example
Here's how the entire process might look in practice:
# Connect to Microsoft Teams Connect-MicrosoftTeams # Get the Group ID for the team $team = Get-Team -DisplayName "My Team" $groupId = $team.GroupId # Get owners of the team Get-TeamUser -GroupId $groupId -Role Owner



CoreView also has a special report called “Teams members”. In this report, you can filter by user to find all the Teams groups a user is a member or owner of. This is very useful when you want to change a user's Teams membership based on another user.