Skip to content

Commit 6ff75be

Browse files
Update New-CsTeamsUpdateManagementPolicy.md
adding missing parameters
1 parent e9614b5 commit 6ff75be

File tree

1 file changed

+179
-5
lines changed

1 file changed

+179
-5
lines changed

teams/teams-ps/teams/New-CsTeamsUpdateManagementPolicy.md

Lines changed: 179 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ Use this cmdlet to create Teams Update Management policy.
1818

1919
## SYNTAX
2020

21-
```
21+
```powershell
2222
New-CsTeamsUpdateManagementPolicy
2323
[-DisabledInProductMessages <System.Management.Automation.PSListModifier`1[System.String]>]
2424
[-Description <String>] [-AllowManagedUpdates <Boolean>] [-AllowPreview <Boolean>] [-UpdateDayOfWeek <Int64>]
2525
[-UpdateTime <String>] [-UpdateTimeOfDay <DateTime>] [-AllowPublicPreview <String>]
26-
[-UseNewTeamsClient <String>] [-BlockLegacyAuthorization <Boolean>] [-Identity] <String> [-Force]
27-
[-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm] [<CommonParameters>]
26+
[-AllowPrivatePreview <AllowPrivatePreview>] [-UseNewTeamsClient <String>]
27+
[-BlockLegacyAuthorization <Boolean>] [-Identity] <String> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2828
```
2929

3030
## DESCRIPTION
3131

32-
Create a Teams Update Management policy.
32+
The Teams Update Management Policy allows admins to specify if a given user is enabled to preview features in Teams.
3333

34-
This cmdlet can be used to create a new policity to manage the visibility of some Teams in-product messages. Executing the cmdlet will suppress the corresponding category of messages from appearing for the specified user group.
34+
This cmdlet can be used to create a new policy to manage the visibility of some Teams in-product messages. Executing the cmdlet will suppress the corresponding category of messages from appearing for the specified user group.
3535

3636
## EXAMPLES
3737

@@ -79,6 +79,180 @@ Accept pipeline input: False
7979
Accept wildcard characters: False
8080
```
8181
82+
### -AllowManagedUpdates
83+
84+
Enables/Disables managed updates for the user.
85+
86+
```yaml
87+
Type: Boolean
88+
Parameter Sets: (All)
89+
Aliases:
90+
91+
Required: False
92+
Position: Named
93+
Default value: None
94+
Accept pipeline input: False
95+
Accept wildcard characters: False
96+
```
97+
98+
### -AllowPreview
99+
100+
Indicates whether all feature flags are switched on or off. Can be set only when AllowManagedUpdates is set to True.
101+
102+
```yaml
103+
Type: Boolean
104+
Parameter Sets: (All)
105+
Aliases:
106+
107+
Required: False
108+
Position: Named
109+
Default value: None
110+
Accept pipeline input: False
111+
Accept wildcard characters: False
112+
```
113+
114+
### -AllowPrivatePreview
115+
116+
This setting will allow admins to allow users in their tenant to opt in to Private Preview.
117+
If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client.
118+
If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client.
119+
If it is Forced, then users will be switched to Private Preview.
120+
121+
```yaml
122+
Type: AllowPrivatePreview
123+
Parameter Sets: (All)
124+
Aliases:
125+
126+
Required: False
127+
Position: Named
128+
Default value: None
129+
Accept pipeline input: False
130+
Accept wildcard characters: False
131+
```
132+
133+
### -AllowPublicPreview
134+
135+
This setting will allow admins to allow users in their tenant to opt in to Public Preview.
136+
If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client.
137+
If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client.
138+
If it is FollowOfficePreview, then users will not be able to opt in and instead follow their Office channel, and be switched to Public Preview if their Office channel is CC (Preview). The ring switcher UI will be hidden in the Desktop Client. This is not applicable to the Web Client.
139+
If it is Forced, then users will be switched to Public Preview.
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+
### -BlockLegacyAuthorization
154+
155+
This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios.
156+
If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users.
157+
If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users.
158+
159+
```yaml
160+
Type: Boolean
161+
Parameter Sets: (All)
162+
Aliases:
163+
164+
Required: False
165+
Position: Named
166+
Default value: None
167+
Accept pipeline input: False
168+
Accept wildcard characters: False
169+
```
170+
171+
### -Description
172+
173+
Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to.
174+
175+
```yaml
176+
Type: String
177+
Parameter Sets: (All)
178+
Aliases:
179+
180+
Required: False
181+
Position: Named
182+
Default value: None
183+
Accept pipeline input: False
184+
Accept wildcard characters: False
185+
```
186+
187+
### -UpdateDayOfWeek
188+
189+
Machine local day. 0-6(Sun-Sat) Can be set only when AllowManagedUpdates is set to True.
190+
191+
```yaml
192+
Type: Int64
193+
Parameter Sets: (All)
194+
Aliases:
195+
196+
Required: False
197+
Position: Named
198+
Default value: None
199+
Accept pipeline input: False
200+
Accept wildcard characters: False
201+
```
202+
203+
### -UpdateTime
204+
205+
Machine local time in HH:MM format. Can be set only when AllowManagedUpdates is set to True.
206+
207+
```yaml
208+
Type: String
209+
Parameter Sets: (All)
210+
Aliases:
211+
212+
Required: False
213+
Position: Named
214+
Default value: None
215+
Accept pipeline input: False
216+
Accept wildcard characters: False
217+
```
218+
219+
### -UpdateTimeOfDay
220+
221+
Machine local time. Can be set only when AllowManagedUpdates is set to True
222+
223+
```yaml
224+
Type: DateTime
225+
Parameter Sets: (All)
226+
Aliases:
227+
228+
Required: False
229+
Position: Named
230+
Default value: None
231+
Accept pipeline input: False
232+
Accept wildcard characters: False
233+
```
234+
235+
### -UseNewTeamsClient
236+
237+
This setting will enable admins to show or hide which users see the Teams preview toggle on the current Teams client.
238+
If it is AdminDisabled, then users will not be able to see the Teams preview toggle in the Desktop Client.
239+
If it is UserChoice, then users will be able to see the Teams preview toggle in the Desktop Client.
240+
If it is MicrosoftChoice, then Microsoft will configure/ manage whether user sees or does not see this feature if the admin has set nothing.
241+
If it is NewTeamsAsDefault, then New Teams will be default for users, and they will be able to switch back to Classic Teams via the toggle in the Desktop Client.
242+
If it is NewTeamsOnly, then New Teams will be the only Teams client installed for users.
243+
244+
```yaml
245+
Type: String
246+
Parameter Sets: (All)
247+
Aliases:
248+
249+
Required: False
250+
Position: Named
251+
Default value: None
252+
Accept pipeline input: False
253+
Accept wildcard characters: False
254+
```
255+
82256
### -Force
83257
Suppress all non-fatal errors.
84258

0 commit comments

Comments
 (0)