Listing all private channels and owners

Copper Contributor

I would like to get a list of all private channels and their owners, is there a way to do it?

 

Thanks

4 Replies

 

 

Hello @Youness022  

Did this quickly, it can be improved but it does what you want

 

 

Connect-MicrosoftTeams

$Teams = Get-Team

foreach($team in $teams){

$PrivateChannel=Get-TeamChannel -MembershipType private -GroupId $team.groupId

if($privateChannel)
{
Write-Host "Private Channel: " $privateChannel.displayName

$owner=Get-TeamChannelUser -Role owner -GroupId $team.groupId -DisplayName $privateChannel.displayName

Write-Host "Owner: " $owner.Name
}

}

 

What version are you using for Teams PowerShell?
Hello, last GA one 4.2.0

Let me recommend https://msshells.net/ to keep track of them :)

@Andres Gorzelany 

So Close - thanks for the starter.


Connect-MicrosoftTeams
$teamName = Read-Host -Prompt 'Team name?'
$Teams = Get-Team -DisplayName $teamName
foreach($team in $teams){
Write-Host "Team: " $team.displayName
$privateChannels=Get-TeamChannel -MembershipType private -GroupId $team.groupId
foreach($privateChannel in $privateChannels)
{
Write-Host "Private Channel: " $privateChannel.displayName
$owners=Get-TeamChannelUser -Role owner -GroupId $team.groupId -DisplayName $privateChannel.displayName
foreach($owner in $owners){
    Write-Host "Owner: " $owner.Name
}
}
}