Forum Discussion

AB21805's avatar
AB21805
Bronze Contributor
Nov 27, 2020
Solved

setting call policy to allow cloud recording

Hi all,   Was wondering if someone can help, I want to allow cloud recording for 121 calls. How do I do this Im using this Set-CsTeamsCallingPolicy -Identity Staff -allowCloudRecordingForCalls $tru...
  • yorkits's avatar
    Dec 04, 2020

    AB21805  I think it depends on the version of the MicrosoftTeams module you have installed.

     

    You may need to install the MicrosoftTeams module if you haven't already

    PS C:\Windows\System32> Install-Module -Name MicrosoftTeams

    Update the module - you don't need the SkypeForBusiness module if you have the latest MicrosoftTeams module

    PS C:\Windows\System32> Update-Module MicrosoftTeams -Force

    You may need to exit PowerShell and start a new elevated PowerShell at this point

    Import the module

    PS C:\Windows\system32> Import-Module -Name MicrosoftTeams

    Create a session variable

    PS C:\Windows\system32> $session = New-CSOnlineSession

    This should prompt you to login to your tenant

     

    Once logged in, import the commands from the newly created session

    PS C:\Windows\system32> Import-PSSession $session

    Check what settings you have currently

    PS C:\Windows\system32> Get-CsTeamsCallingPolicy | Select Identity, allowCloudRecordingForCalls


    Set the value for your Staff identity

    PS C:\Windows\system32> Set-CsTeamsCallingPolicy -Identity Staff -allowCloudRecordingForCalls $true

    Check it worked

    PS C:\Windows\system32> Get-CsTeamsCallingPolicy | Select Identity, allowCloudRecordingForCalls

     

    Good luck

     

    Dave  

Resources