May 02 2019 11:50 AM
we are trying to enable the Transcription feature for recorded meetings in Teams, by following the instructions at https://docs.microsoft.com/en-us/microsoftteams/cloud-recording#turn-on-or-turn-off-recording-transc...
but we are getting the following error.
Has this worked for anyone else? There is nothing in the instructions about needing to change AllowPSTNUsersToBypassLobby to true. Is this what we must do? Thanks
PS CM1:\> Set-CsTeamsMeetingPolicy -Identity Global -AllowTranscription $true
Invalid value combination AutoAdmittedUsers: Everyone and AllowPSTNUsersToBypassLobby: False. When AutoAdmittedUsers is set to Everyone, AllowPSTNUsersToBypassLobby must not be False.
+ CategoryInfo : InvalidArgument: (Microsoft.Rtc.M...msMeetingPolicy:TeamsMeetingPolicy)
[Set-CsTeamsMeetingPolicy], ArgumentException
+ FullyQualifiedErrorId : CustomValidationFailed,Microsoft.Rtc.Management.Internal.SetTeamsMeetingPolicyCmdlet
+ PSComputerName : admin1a.online.lync.com
Invalid value combination AutoAdmittedUsers: Everyone and AllowPSTNUsersToBypassLobby: False. When AutoAdmittedUsers is set to Everyone, AllowPSTNUsersToBypassLobby must not be False.
+ CategoryInfo : InvalidArgument: (Microsoft.Rtc.M...msMeetingPolicy:TeamsMeetingPolicy) [Set-CsTeamsMeetingPolicy], ArgumentException
+ FullyQualifiedErrorId : CustomValidationFailed,Microsoft.Rtc.Management.Internal.SetTeamsMeetingPolicyCmdlet
+ PSComputerName : admin1a.online.lync.com
May 02 2019 12:10 PM
May 02 2019 01:43 PM
Hi,
I tested and got the same problem. Looks like you can't change anything in the policy since there is another problem with the invalid value combination, so it is not related to this change that you are trying to do.
So try this:
Set-CsTeamsMeetingPolicy -Identity Global -AllowTranscription $true -AllowPSTNUsersToBypassLobby $true -AutoAdmittedUsers Everyone
or
Set-CsTeamsMeetingPolicy -Identity Global -AllowTranscription $true -AllowPSTNUsersToBypassLobby $false -AutoAdmittedUsers EveryoneInSameAndFederatedCompany