Forum Discussion
Enabling Meeting Attendance Report
- Jun 23, 2020try the following:
Get-CsTeamsMeetingPolicy -Identity Global
If LiveCaptionsEnabledType is set to EnabledUserOverride
Do the following:
Set-CsTeamsMeetingPolicy -Identity Global -LiveCaptionsEnabledType DisabledUserOverride
Looks like EnabledUserOverride is an invalid PS Value
If you have any additional meeting policies with this value, you will also want to configure the same value.
Hi CCorcoran
Can you please connect to Skype for Business Powershell and then run the command.
Run PowerShell ISE as Administrator
Set-ExecutionPolicy unrestricted
Import-Module SkypeOnlineConnector
$cred = Get-Credential
$session = New-CsOnlineSession -Credential $cred -Verbose
Import-PSSession -Session $session
Let me know in case you face any issues
With Regards,
Satish U
RealTime_M365 We are seeing the exact same issue. We are trying to enable this for our Global Policy
Set-CSTeamsMeetingPolicy -Identity Global -AllowEngagementReport Enabled
gives us that error "The WriteObject and WriteError methods cannot be called from outside the overrides of the BeginProcessing"
Get-CSTeamsMeetingPolicy -Identity Global | Set-CSTeamsMeetingPolicy -AllowEngagementReport Enable
Gives me this error "You are not permitted to invoke Set-CsTeamsMeetingPolicy with the following parameters:
Instance"
- ShawnColemanJun 23, 2020Brass Contributortry the following:
Get-CsTeamsMeetingPolicy -Identity Global
If LiveCaptionsEnabledType is set to EnabledUserOverride
Do the following:
Set-CsTeamsMeetingPolicy -Identity Global -LiveCaptionsEnabledType DisabledUserOverride
Looks like EnabledUserOverride is an invalid PS Value
If you have any additional meeting policies with this value, you will also want to configure the same value.- CCorcoranJun 23, 2020Copper Contributor
ShawnColeman Thank you very much. That resolved the issue. Appreciate the effort to find the solution.