Skip to content

Commit d300369

Browse files
authored
Merge pull request #11131 from navirdee/main
Update Teams Events Policy to include the AllowEmailEditing policy
2 parents 8e0dbea + 266fde7 commit d300369

File tree

2 files changed

+72
-2
lines changed

2 files changed

+72
-2
lines changed

teams/teams-ps/teams/New-CsTeamsEventsPolicy.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This cmdlet allows you to create a new TeamsEventsPolicy instance and set its pr
1414
## SYNTAX
1515

1616
```
17-
New-CsTeamsEventsPolicy [-Identity] <String> [-AllowWebinars <String>] [-AllowTownhalls <String>] [-Description <String>]
17+
New-CsTeamsEventsPolicy [-Identity] <String> [-AllowWebinars <String>] [-AllowTownhalls <String>] [-AllowEmailEditing <String>] [-Description <String>]
1818
[-EventAccessType <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
1919
```
2020

@@ -67,6 +67,26 @@ Possible values are:
6767
6868
6969
70+
```yaml
71+
Type: String
72+
Parameter Sets: (All)
73+
Aliases:
74+
75+
Required: True
76+
Position: Named
77+
Default value: Enabled
78+
Accept pipeline input: False
79+
Accept wildcard characters: False
80+
```
81+
82+
### -AllowEmailEditing
83+
This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events.
84+
Possible values are:
85+
- **Enabled**: Enables editing of communication emails.
86+
- **Disabled**: Disables editing of communication emails.
87+
88+
89+
7090
```yaml
7191
Type: String
7292
Parameter Sets: (All)

teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This cmdlet allows you to configure options for customizing Teams events experie
1313
## SYNTAX
1414

1515
```
16-
Set-CsTeamsEventsPolicy [-AllowWebinars <String>] [-AllowTownhalls <String>] [-Description <String>] [-EventAccessType <String>]
16+
Set-CsTeamsEventsPolicy [-AllowWebinars <String>] [-AllowTownhalls <String>] [-AllowEmailEditing <String>] [-Description <String>] [-EventAccessType <String>]
1717
[[-Identity] <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
1818
```
1919

@@ -119,6 +119,56 @@ Accept wildcard characters: False
119119
Enables administrators to provide explanatory text to accompany a Teams Events policy.
120120
121121
122+
```yaml
123+
Type: String
124+
Parameter Sets: (All)
125+
Aliases:
126+
127+
Required: False
128+
Position: Named
129+
Default value: None
130+
Accept pipeline input: False
131+
Accept wildcard characters: False
132+
```
133+
134+
### -AllowEmailEditing
135+
This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events.
136+
Possible values are:
137+
- **Enabled**: Enables editing of communication emails.
138+
- **Disabled**: Disables editing of communication emails.
139+
140+
141+
```yaml
142+
Type: String
143+
Parameter Sets: (All)
144+
Aliases:
145+
146+
Required: False
147+
Position: Named
148+
Default value: None
149+
Accept pipeline input: False
150+
Accept wildcard characters: False
151+
```
152+
153+
### -Confirm
154+
The Confirm switch does not work with this cmdlet.
155+
156+
```yaml
157+
Type: SwitchParameter
158+
Parameter Sets: (All)
159+
Aliases: cf
160+
161+
Required: False
162+
Position: Named
163+
Default value: None
164+
Accept pipeline input: False
165+
Accept wildcard characters: False
166+
```
167+
168+
### -Description
169+
Enables administrators to provide explanatory text to accompany a Teams Events policy.
170+
171+
122172
```yaml
123173
Type: String
124174
Parameter Sets: (All)

0 commit comments

Comments
 (0)