Skip to content

Commit fd4b48f

Browse files
authored
Merge pull request MicrosoftDocs#7300 from get-itips/patch-321
Adding missing params
2 parents 5daaef5 + edb74b3 commit fd4b48f

File tree

2 files changed

+93
-1
lines changed

2 files changed

+93
-1
lines changed

skype/skype-ps/skype/New-CsTeamsFeedbackPolicy.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Use this cmdlet to control whether users in your organization can send feedback
1919

2020
```
2121
New-CsTeamsFeedbackPolicy [-WhatIf] [-Confirm] [[-Identity] <Object>] [-Tenant <Object>] [-InMemory]
22+
[-AllowEmailCollection <Boolean>] [-AllowLogCollection <Boolean>] [-AllowScreenshotCollection <Boolean>]
2223
[-UserInitiatedMode <String>] [-ReceiveSurveysMode <String>] [-Force]
2324
```
2425

@@ -151,6 +152,48 @@ Accept pipeline input: False
151152
Accept wildcard characters: False
152153
```
153154
155+
### -AllowEmailCollection
156+
Set this to TRUE to enable Email collection.
157+
158+
```yaml
159+
Type: Boolean
160+
Parameter Sets: (All)
161+
Aliases:
162+
Required: False
163+
Position: Named
164+
Default value: None
165+
Accept pipeline input: False
166+
Accept wildcard characters: False
167+
```
168+
169+
### -AllowLogCollection
170+
Set this to TRUE to enable log collection.
171+
172+
```yaml
173+
Type: Boolean
174+
Parameter Sets: (All)
175+
Aliases:
176+
Required: False
177+
Position: Named
178+
Default value: None
179+
Accept pipeline input: False
180+
Accept wildcard characters: False
181+
```
182+
183+
### -AllowScreenshotCollection
184+
Set this to TRUE to enable Screenshot collection.
185+
186+
```yaml
187+
Type: Boolean
188+
Parameter Sets: (All)
189+
Aliases:
190+
Required: False
191+
Position: Named
192+
Default value: None
193+
Accept pipeline input: False
194+
Accept wildcard characters: False
195+
```
196+
154197
### -WhatIf
155198
Shows what would happen if the cmdlet runs.
156199
The cmdlet is not run.

skype/skype-ps/skype/Set-CsTeamsFeedbackPolicy.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ Use this cmdlet to modify a Teams feedback policy.
2020

2121
```
2222
Set-CsTeamsFeedbackPolicy [-WhatIf] [-Confirm] [[-Identity] <Object>] [-Tenant <Object>]
23-
[-ReceiveSurveysMode <String>] [-UserInitiatedMode <String>] [-Force] [-Instance <Object>]
23+
[-ReceiveSurveysMode <String>] [-UserInitiatedMode <String>] [-AllowEmailCollection <Boolean>]
24+
[-AllowLogCollection <Boolean>] [-AllowScreenshotCollection <Boolean>]
25+
[-Force] [-Instance <Object>]
2426
```
2527

2628
## DESCRIPTION
@@ -99,10 +101,12 @@ Accept wildcard characters: False
99101
100102
### -ReceiveSurveysMode
101103
Set the receiveSurveysMode parameter to enabled to allow users who are assigned the policy to receive the survey.
104+
Set it to EnabledUserOverride to have users receive the survey and allow them to opt out.
102105
103106
Possible values:
104107
- Enabled
105108
- Disabled
109+
- EnabledUserOverride
106110
107111
```yaml
108112
Type: String
@@ -151,6 +155,51 @@ Accept pipeline input: False
151155
Accept wildcard characters: False
152156
```
153157
158+
### -AllowEmailCollection
159+
Set this to TRUE to enable Email collection.
160+
161+
```yaml
162+
Type: Boolean
163+
Parameter Sets: (All)
164+
Aliases:
165+
166+
Required: False
167+
Position: Named
168+
Default value: None
169+
Accept pipeline input: False
170+
Accept wildcard characters: False
171+
```
172+
173+
### -AllowLogCollection
174+
Set this to TRUE to enable log collection.
175+
176+
```yaml
177+
Type: Boolean
178+
Parameter Sets: (All)
179+
Aliases:
180+
181+
Required: False
182+
Position: Named
183+
Default value: None
184+
Accept pipeline input: False
185+
Accept wildcard characters: False
186+
```
187+
188+
### -AllowScreenshotCollection
189+
Set this to TRUE to enable Screenshot collection.
190+
191+
```yaml
192+
Type: Boolean
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+
154203
### -WhatIf
155204
Shows what would happen if the cmdlet runs.
156205
The cmdlet is not run.

0 commit comments

Comments
 (0)