Created
January 23, 2020 19:54
-
-
Save quinnm92/ba77cdcc1d5b1214398894c0f3b38c7d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define a new object to gather output | |
$OutputCollection= @() | |
Write-Verbose "Getting Team Names and Details" | |
$teams = Get-Team | |
Write-Host "Teams Count is $($teams.count)" | |
$teams | ForEach-Object { | |
Write-host "Getting details for Team $($_.DisplayName)" | |
# Calculate Description word count | |
$DescriptionWordCount = $null | |
$DescriptionWordCount = ($_.Description | Out-String | Measure-Object -Word).words | |
#Get channel details | |
$Channels = $null | |
$Channels = Get-TeamChannel -GroupId $_.GroupID | |
$ChannelCount = $Channels.count | |
# Get Owners, members and guests | |
$TeamUsers = Get-TeamUser -GroupId $_.GroupID | |
$TeamOwnerCount = ($TeamUsers | Where-Object {$_.Role -like "owner"}).count | |
$TeamMemberCount = ($TeamUsers | Where-Object {$_.Role -like "member"}).count | |
$TeamGuestCount = ($TeamUsers | Where-Object {$_.Role -like "guest"}).count | |
# Put all details into an object | |
$output = New-Object -TypeName PSobject | |
$output | add-member NoteProperty "DisplayName" -value $_.DisplayName | |
$output | add-member NoteProperty "Description" -value $_.Description | |
$output | add-member NoteProperty "DescriptionWordCount" -value $DescriptionWordCount | |
$output | add-member NoteProperty "Visibility" -value $_.Visibility | |
$output | add-member NoteProperty "Archived" -value $_.Archived | |
$output | Add-Member NoteProperty "ChannelCount" -Value $ChannelCount | |
$output | Add-Member NoteProperty "OwnerCount" -Value $TeamOwnerCount | |
$output | Add-Member NoteProperty "MemberCount" -Value $TeamMemberCount | |
$output | Add-Member NoteProperty "GuestCount" -Value $TeamGuestCount | |
$output | add-member NoteProperty "GroupId" -value $_.GroupId | |
$OutputCollection += $output | |
} | |
# Output collection | |
$OutputCollection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment