Skip to content

Commit 596ab1e

Browse files
authored
Merge branch 'master' into patch-323
2 parents b1a3cc1 + 98095be commit 596ab1e

File tree

5 files changed

+123
-7
lines changed

5 files changed

+123
-7
lines changed

exchange/exchange-ps/exchange/Set-TransportConfig.md

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Set-TransportConfig [[-Identity] <OrganizationIdParameter>]
4848
[-InternalDsnReportingAuthority <SmtpDomain>]
4949
[-InternalDsnSendHtml <Boolean>]
5050
[-InternalSMTPServers <MultiValuedProperty>]
51+
[-JournalMessageExpirationDays <Int32>]
5152
[-JournalingReportNdrTo <SmtpAddress>]
5253
[-LegacyJournalingMigrationEnabled <Boolean>]
5354
[-MaxAllowedAgentGeneratedMessageDepth <UInt32>]
@@ -106,13 +107,15 @@ To avoid journaling issues, we recommend that you set JournalingReportNdrTo to a
106107
## PARAMETERS
107108

108109
### -Identity
110+
This parameter is available only in on-premises Exchange.
111+
109112
This parameter is reserved for internal Microsoft use.
110113

111114
```yaml
112115
Type: OrganizationIdParameter
113116
Parameter Sets: (All)
114117
Aliases:
115-
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
118+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
116119

117120
Required: False
118121
Position: 1
@@ -397,8 +400,8 @@ Accept wildcard characters: False
397400
### -ExternalDsnSendHtml
398401
The ExternalDsnSendHtml parameter specifies whether external DSN messages should be HTML or plain text. Valid values are:
399402

400-
- $true: DSNs are HTML. This is the default value.
401-
- $false: DSNs are plain text.
403+
- $true: External DSNs are HTML. This is the default value.
404+
- $false: External DSNs are plain text.
402405

403406
```yaml
404407
Type: Boolean
@@ -608,8 +611,8 @@ Accept wildcard characters: False
608611
### -InternalDsnSendHtml
609612
The InternalDsnSendHtml parameter specifies whether internal DSN messages should be HTML or plain text. Valid values are:
610613

611-
- $true: DSNs are HTML. This is the default value.
612-
- $false: DSNs are plain text.
614+
- $true: Internal DSNs are HTML. This is the default value.
615+
- $false: Internal DSNs are plain text.
613616

614617
```yaml
615618
Type: Boolean
@@ -646,8 +649,26 @@ Accept pipeline input: False
646649
Accept wildcard characters: False
647650
```
648651

652+
### -JournalMessageExpirationDays
653+
This parameter is available only in the cloud-based service.
654+
655+
The JournalMessageExpirationDays parameter extends the number of days that undeliverable journal reports are queued before they expire. A valid value is an integer from 0 to 7. The default value is 0, which means undeliverable journal reports are treated like regular undeliverable messages.
656+
657+
```yaml
658+
Type: Int32
659+
Parameter Sets: (All)
660+
Aliases:
661+
Applicable: Exchange Online
662+
663+
Required: False
664+
Position: Named
665+
Default value: None
666+
Accept pipeline input: False
667+
Accept wildcard characters: False
668+
```
669+
649670
### -JournalingReportNdrTo
650-
The JournalingReportNdrTo parameter specifies the email address to which journal reports are sent if the journaling mailbox is unavailable. By default, if this parameter is left empty, Exchange continues to try to deliver the journal report to the journaling mailbox. We recommended that you use a dedicated (non-user) mailbox as the argument to JournalingReportNdrTo.
671+
The JournalingReportNdrTo parameter specifies the email address to which journal reports are sent if the journaling mailbox is unavailable. By default, if this parameter is left empty, Exchange continues to try to deliver the journal report to the journaling mailbox. We recommended that you use a dedicated (non-user) mailbox as the value for this parameter.
651672

652673
```yaml
653674
Type: SmtpAddress

skype/skype-ps/skype/Grant-CsTeamsUpgradePolicy.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ The `Grant-CsTeamsUpgradePolicy` cmdlet checks the configuration of the correspo
6666

6767
`WARNING: The user 'user1@contoso.com' currently has enabled values for: AllowUserChat, AllowPrivateCalling, AllowPrivateMeetingScheduling, AllowChannelMeetingScheduling, however these values will be ignored. This is because you are granting this user TeamsUpgradePolicy with mode=SfBWithTeamsCollab, which causes the Teams client to behave as if they are disabled.`
6868

69+
Please note: These warning messages are not affected by the -WarningAction parameter.
70+
6971
## EXAMPLES
7072

7173
### Example 1: Grant Policy to an individual user

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.

teams/teams-ps/teams/New-Team.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ Accept wildcard characters: False
169169
An admin who is allowed to create on behalf of another user should use this flag to specify the desired owner of the group.
170170
This user will be added as both a member and an owner of the group.
171171
If not specified, the user who creates the team will be added as both a member and an owner.
172+
Please note: This parameter is mandatory, if connected using Certificate Based Authentication.
172173
173174
```yaml
174175
Type: String

0 commit comments

Comments
 (0)