Skip to content

Add docs for new TeamsEventsPolicies -MaxResolutionForTownhall and -HighBitrateForTownhall #12848

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 39 additions & 1 deletion teams/teams-ps/teams/New-CsTeamsEventsPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This cmdlet allows you to create a new TeamsEventsPolicy instance and set its pr
New-CsTeamsEventsPolicy [-Identity] <String> [-AllowWebinars <String>] [-AllowTownhalls <String>] [-AllowEmailEditing <String>] [-Description <String>]
[-TownhallEventAttendeeAccess <String>] [-RecordingForTownhall <String>] [-RecordingForWebinar <String>]
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>] [-AllowEventIntegrations <Boolean>] [-TownhallChatExperience <String>]
[-UseMicrosoftECDN <String>] [-EventAccessType <String>] [-BroadcastPremiumApps <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
[-UseMicrosoftECDN <String>] [-EventAccessType <String>] [-BroadcastPremiumApps <String>] [-MaxResolutionForTownhall <String>] [-HighBitrateForTownhall <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -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.

Expand Down
38 changes: 38 additions & 0 deletions teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Set-CsTeamsEventsPolicy [-AllowWebinars <String>] [-EventAccessType <String>] [-
[-RecordingForTownhall <String>] [-RecordingForWebinar <String>]
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>]
[-UseMicrosoftECDN <Boolean>] [-BroadcastPremiumApps <String>]
[-MaxResolutionForTownhall <String>] [-HighBitrateForTownhall <String>]
```

## DESCRIPTION
Expand Down Expand Up @@ -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.

Expand Down