MicrosoftTeams PowerShell Module 5.1.1 released as Preview

Hi All,

Today Microsoft has released the Version 5.1.1-Preview of the MicrosoftTeams PowerShell Module to PowerShell Gallery.

The official Link for the Release Notes is not yet up to date

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

Get-InstalledModule MicrosoftTeams
Find-Module MicrosoftTeams -AllowPrerelease

I’ll install the Prerelease Module Side by Side with the current Module therefore i need to use the -Force Parameter

Install-Module MicrosoftTeams -AllowPrerelease -Force
Get-InstalledModule MicrosoftTeams -AllVersions

Let’s test it out

$AppPermissions = Get-CsTeamsAppPermissionPolicy -Identity Dev\_Policy
$AppPermissions.GlobalCatalogApps
Get-TeamsApp -Id 3ddb70b6-c3c0-48af-8c47-f2b00a246ef0

Get-CsTeamsAppSetupPolicy

Get-CsTeamsEventsPolicy

Get-CsExternalAccessPolicy | ft Identity
Get-CsExternalAccessPolicy -Identity Global

Get-CsTeamsCallingPolicy | ft identity
Get-CsTeamsCallingPolicy -Identity IcewolfAllowCalling

Seems to work fine so far.

Regards
Andres Bohren