MicrosoftTeams PowerShell Module 5.1.0 released as GA

Hi All,

Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 5.1.0 to the PowerShell Gallery.

MicrosoftTeams 5.1.0


Microsoft Teams PowerShell Release Notes


Check installed Module and what's available in the PowerShell Gallery

Get-InstalledModule MicrosoftTeams
Find-Module MicrosoftTeams


Uninstall the old Module and install the newest Module

Uninstall-Module MicrosoftTeams
Install-Module MicrosoftTeams
Get-InstalledModule MicrosoftTeams


Testing

Connect-MicrosoftTeams
Get-CsOnlineUser -Identity <Identity>


Some new Filering (since 5.0)

Get-CsOnlineUser -Filter {City -eq 'Bern'} | ft UserPrincipalName
Get-CsOnlineUser -Filter {Company -like 'Ice*'} | ft UserPrincipalName
Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"} | ft UserPrincipalName


Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl TeamsEventsPolicy, ProvisionedPlan, AssignedTimestamp,ServiceInstance,Capability,ServicePlanId,SubscribedPlanId,ProvisionedTimestamp


Get-CsTeamsVoiceApplicationsPolicy -Identity Global


Get-CsTeamsMeetingBrandingPolicy


Get-CsTeamsMeetingPolicy -Identity Global


Get-CsTeamsMessagingPolicy -Identity Global


Get-CsTeamsCallingPolicy -Identity Global



Regards
Andres Bohren