As luck would have it, I had to get the newest version of the Microsoft Teams PowerShell module. It’s still a test module and not available in the main PSGallery. So, I had to poke around and figure out how to add it and get the version that supports Get-TeamChannelUser.
Here’s what I did:
- Launch elevated PowerShell prompt.
- Run:
Register-PackageSource -Name PoshTestGallery -Location https://www.poshtestgallery.com/api/v2/ -ProviderName PowerShellGet
- Run:
Install-Module -Name MicrosoftTeams -RequiredVersion 1.0.18 -Repository PoshTestGallery
Problem solved!