Skip to content

Commit dd31020

Browse files
authored
Merge pull request #8505 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents a732d2c + 8a3370d commit dd31020

File tree

2 files changed

+71
-7
lines changed

2 files changed

+71
-7
lines changed

exchange/exchange-ps/exchange/Set-ExchangeServer.md

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ Set-ExchangeServer [-Identity] <ServerIdParameter>
2929
[-ErrorReportingEnabled <Boolean>]
3030
[-InternetWebProxy <Uri>]
3131
[-InternetWebProxyBypassList <MultiValuedProperty>]
32-
[-MitigationsEnabled <Boolean>]
32+
[-MitigationsApplied <MultiValuedProperty>]
3333
[-MitigationsBlocked <MultiValuedProperty>]
34+
[-MitigationsEnabled <Boolean>]
3435
[-MonitoringGroup <String>]
3536
[-ProductKey <ProductKey>]
3637
[-StaticConfigDomainController <String>]
@@ -218,14 +219,11 @@ Accept pipeline input: False
218219
Accept wildcard characters: False
219220
```
220221

221-
### -MitigationsEnabled
222-
The MitigationsEnabled parameter specifies whether the EM Service will auto-apply mitigations on the Exchange server. Valid values are:
223-
224-
- $true: The EM Service auto-applies mitigations on the Exchange server.
225-
- $false: Mitigations are not auto-applied on the Exchange server.
222+
### -MitigationsApplied
223+
Do not use this parameter. The EM service uses this parameter to store and track mitigation status.
226224

227225
```yaml
228-
Type: Boolean
226+
Type: MultiValuedProperty
229227
Parameter Sets: (All)
230228
Aliases:
231229
Applicable: Exchange Server 2016, Exchange Server 2019
@@ -242,6 +240,27 @@ The MitigationsBlocked parameter specifies a list of mitigations that are blocke
242240

243241
To enter multiple values and overwrite any existing Mitigation entries, use the following syntax: `@("Entry1","Entry2",..."EntryN")`.
244242

243+
```yaml
244+
Type: MultiValuedProperty
245+
Parameter Sets: (All)
246+
Aliases:
247+
Applicable: Exchange Server 2016, Exchange Server 2019
248+
249+
Required: False
250+
Position: Named
251+
Default value: None
252+
Accept pipeline input: False
253+
Accept wildcard characters: False
254+
```
255+
256+
### -MitigationsEnabled
257+
The MitigationsEnabled parameter specifies whether the Exchange Emergency Mitigation service (EM service) automatically applies mitigations on the Exchange server. Valid values are:
258+
259+
- $true: The EM Service automatically applies mitigations on the Exchange server.
260+
- $false: Mitigations are not automatically applied on the Exchange server.
261+
262+
For more information, see [Exchange Emergency Mitigation (EM) service](https://docs.microsoft.com/exchange/exchange-emergency-mitigation-service).
263+
245264
```yaml
246265
Type: Boolean
247266
Parameter Sets: (All)

exchange/exchange-ps/exchange/Set-OrganizationConfig.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ Set-OrganizationConfig [-AdfsAudienceUris <MultiValuedProperty>]
191191
[-MicrosoftExchangeRecipientEmailAddressPolicyEnabled <Boolean>]
192192
[-MicrosoftExchangeRecipientPrimarySmtpAddress <SmtpAddress>]
193193
[-MicrosoftExchangeRecipientReplyRecipient <RecipientIdParameter>]
194+
[-MitigationsEnabled <Boolean>]
194195
[-OAuth2ClientProfileEnabled <Boolean>]
195196
[-OrganizationSummary <MultiValuedProperty>]
196197
[-PreferredInternetCodePageForShiftJis <Int32>]
@@ -210,6 +211,7 @@ Set-OrganizationConfig [-AdfsAudienceUris <MultiValuedProperty>]
210211
[-SmtpActionableMessagesEnabled <Boolean>]
211212
[-UMAvailableLanguages <MultiValuedProperty>]
212213
[-UnblockUnsafeSenderPromptEnabled <Boolean>]
214+
[-UseIcsSyncStateStreaming]
213215
[-WACDiscoveryEndpoint <String>]
214216
[-WhatIf]
215217
[<CommonParameters>]
@@ -273,6 +275,7 @@ Set-OrganizationConfig [-AdfsAuthenticationConfiguration <String>]
273275
[-MicrosoftExchangeRecipientEmailAddressPolicyEnabled <Boolean>]
274276
[-MicrosoftExchangeRecipientPrimarySmtpAddress <SmtpAddress>]
275277
[-MicrosoftExchangeRecipientReplyRecipient <RecipientIdParameter>]
278+
[-MitigationsEnabled <Boolean>]
276279
[-OAuth2ClientProfileEnabled <Boolean>]
277280
[-OrganizationSummary <MultiValuedProperty>]
278281
[-PreferredInternetCodePageForShiftJis <Int32>]
@@ -293,6 +296,7 @@ Set-OrganizationConfig [-AdfsAuthenticationConfiguration <String>]
293296
[-SmtpActionableMessagesEnabled <Boolean>]
294297
[-UMAvailableLanguages <MultiValuedProperty>]
295298
[-UnblockUnsafeSenderPromptEnabled <Boolean>]
299+
[-UseIcsSyncStateStreaming]
296300
[-WACDiscoveryEndpoint <String>]
297301
[-WhatIf]
298302
[<CommonParameters>]
@@ -2510,6 +2514,29 @@ Accept pipeline input: False
25102514
Accept wildcard characters: False
25112515
```
25122516

2517+
### -MitigationsEnabled
2518+
This parameter is available only in on-premises Exchange.
2519+
2520+
The MitigationsEnabled parameter specifies whether the Exchange Emergency Mitigation service (EM service) is enabled in the organization. Valid values are:
2521+
2522+
- $true: The EM Service automatically applies mitigations on Exchange servers where the value of the _MitigationsEnabled_ parameter is $true on the **Set-ExchangeServer**.
2523+
- $false: Mitigations are not automatically applied on Exchange servers.
2524+
2525+
For more information, see [Exchange Emergency Mitigation (EM) service](https://docs.microsoft.com/exchange/exchange-emergency-mitigation-service).
2526+
2527+
```yaml
2528+
Type: Boolean
2529+
Parameter Sets: AdfsAuthenticationParameter, AdfsAuthenticationRawConfiguration
2530+
Aliases:
2531+
Applicable: Exchange Server 2016, Exchange Server 2019
2532+
2533+
Required: False
2534+
Position: Named
2535+
Default value: None
2536+
Accept pipeline input: False
2537+
Accept wildcard characters: False
2538+
```
2539+
25132540
### -MobileAppEducationEnabled
25142541
This parameter is available only in the cloud-based service.
25152542

@@ -3109,6 +3136,24 @@ Accept pipeline input: False
31093136
Accept wildcard characters: False
31103137
```
31113138

3139+
### -UseIcsSyncStateStreaming
3140+
This parameter is available only in on-premises Exchange.
3141+
3142+
{{ Fill UseIcsSyncStateStreaming Description }}
3143+
3144+
```yaml
3145+
Type: SwitchParameter
3146+
Parameter Sets: AdfsAuthenticationParameter, AdfsAuthenticationRawConfiguration
3147+
Aliases:
3148+
Applicable: Exchange Server 2016, Exchange Server 2019
3149+
3150+
Required: False
3151+
Position: Named
3152+
Default value: None
3153+
Accept pipeline input: False
3154+
Accept wildcard characters: False
3155+
```
3156+
31123157
### -VisibleMeetingUpdateProperties
31133158
This parameter is available only in the cloud-based service.
31143159

0 commit comments

Comments
 (0)