1 min read

Teams – New setting to control 1:1 call recording policy

As you may know, Teams administrators can control by policy call recording for both meeting and 1:1 calls.

Well, regarding the 1:1 call recording policy, this is (was) controlled by the AllowCloudRecording global parameter.

Starting mid March 2021, a new parameter – allowCloudRecordingForCalls, specific for 1:1 calls, will be introduced which will be set by default to false, which will block 1:1 call recording.

If you want to continue (if already enabled) to allow 1:1 call recording, you will need to update your configuration with the new parameter using the below command – you will need to have the Teams PowerShell module installed (available from the PowerShell galley https://www.powershellgallery.com/packages/MicrosoftTeams/)

First to connect to Teams

Import-Module -Name MicrosoftTeams
$userCredential = Get-Credential
$sfbSession = New-CsOnlineSession -Credential $userCredential
Import-PSSession $sfbSession

Then set the policy (this command applies the setting to the global policy; if you want to apply it to a specific policy you need to add –Identity with identity policy value

Set-CsTeamsCallingPolicy -AllowCloudRecordingForCalls $true

image_thumb-390-3341263

Teams – You can now automatically start recording when joining a meeting

As you know, you can record Teams meeting by manually hitting the Start recording action.

Read More

Teams – Meeting organizer can download the attendance list

Teams meeting organizer can download the list of the attendee of a meeting in a CSV format. This is also available for Meet Now meeting

Read More

Teams – A new meeting policy setting is available to control dial-in user to bypass the lobby

A new setting is becoming available for Teams meeting policies to control how dial-in users are handled when joining the meeting.

Read More