diff --git a/teams/teams-ps/teams/New-CsTeamsEventsPolicy.md b/teams/teams-ps/teams/New-CsTeamsEventsPolicy.md index 778df29878..635f6bbdd9 100644 --- a/teams/teams-ps/teams/New-CsTeamsEventsPolicy.md +++ b/teams/teams-ps/teams/New-CsTeamsEventsPolicy.md @@ -18,7 +18,7 @@ This cmdlet allows you to create a new TeamsEventsPolicy instance and set its pr New-CsTeamsEventsPolicy [-Identity] [-AllowWebinars ] [-AllowTownhalls ] [-AllowEmailEditing ] [-Description ] [-TownhallEventAttendeeAccess ] [-RecordingForTownhall ] [-RecordingForWebinar ] [-TranscriptionForTownhall ] [-TranscriptionForWebinar ] [-AllowEventIntegrations ] [-TownhallChatExperience ] -[-UseMicrosoftECDN ] [-EventAccessType ] [-BroadcastPremiumApps ] [-WhatIf] [-Confirm] [] +[-UseMicrosoftECDN ] [-EventAccessType ] [-BroadcastPremiumApps ] [-MaxResolutionForTownhall ] [-HighBitrateForTownhall ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -314,6 +314,44 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MaxResolutionForTownhall +This setting will enable Tenant Admins to specify whether Teams Premium town halls will support up to 1080p video resolution. + +Possible values are: +- **Max1080p**: Town hall video quality supports up to 1080p +- **Max720p**: Town hall video quality supports up to 720p + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Max1080p +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HighBitrateForTownhall +This setting will enable Tenant Admins to specify whether Teams Premium Town halls will support high-bitrate video quality of up to 8 Mbps. Note: In order to enable this policy, one must first set the `MaxResolutionForTownhall` policy to `Max1080p`. + +Possible values are: +- **Enabled**: Town halls support high-bitrate video quality (up to 8 Mbps) +- **Disabled**: Town halls do not support high-bitrate video quality (up to 4 Mbps) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Disabled +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm The Confirm switch does not work with this cmdlet. diff --git a/teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md b/teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md index bf14cb6cb1..aa5db0d50d 100644 --- a/teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md +++ b/teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md @@ -22,6 +22,7 @@ Set-CsTeamsEventsPolicy [-AllowWebinars ] [-EventAccessType ] [- [-RecordingForTownhall ] [-RecordingForWebinar ] [-TranscriptionForTownhall ] [-TranscriptionForWebinar ] [-UseMicrosoftECDN ] [-BroadcastPremiumApps ] + [-MaxResolutionForTownhall ] [-HighBitrateForTownhall ] ``` ## DESCRIPTION @@ -406,6 +407,43 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MaxResolutionForTownhall +This setting will enable Tenant Admins to specify whether Teams Premium town halls will support up to 1080p video resolution. + +Possible values are: +- **Max1080p**: Town hall video quality supports up to 1080p +- **Max720p**: Town hall video quality supports up to 720p + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Max1080p +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HighBitrateForTownhall +This setting will enable Tenant Admins to specify whether Teams Premium Town halls will support high-bitrate video quality of up to 8 Mbps. Note: In order to enable this policy, one must first set the `MaxResolutionForTownhall` policy to `Max1080p`. + +Possible values are: +- **Enabled**: Town halls support high-bitrate video quality (up to 8 Mbps) +- **Disabled**: Town halls do not support high-bitrate video quality (up to 4 Mbps) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: Disabled +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm The Confirm switch does not work with this cmdlet.