Skip to content

Commit efaa7ac

Browse files
committed
Merge branch 'master' into chrisda
2 parents 56d0c93 + 8851ced commit efaa7ac

File tree

383 files changed

+731
-424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

383 files changed

+731
-424
lines changed

exchange/exchange-ps/exchange/mail-flow/Start-HistoricalSearch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Required: False
286286
Position: Named
287287
Default value: None
288288
Accept pipeline input: False
289-
Accept wildcard characters: False
289+
Accept wildcard characters: True
290290
```
291291
292292
### -SenderAddress

exchange/exchange-ps/exchange/mailboxes/Get-Mailbox.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -278,23 +278,6 @@ Accept pipeline input: False
278278
Accept wildcard characters: False
279279
```
280280
281-
### -Properties
282-
This parameter is available only in the cloud-based service.
283-
284-
{{Fill Properties Description}}
285-
286-
```yaml
287-
Type: String[]
288-
Parameter Sets: AsyncParameterSet
289-
Aliases:
290-
Applicable: Exchange Online
291-
Required: True
292-
Position: Named
293-
Default value: None
294-
Accept pipeline input: False
295-
Accept wildcard characters: False
296-
```
297-
298281
### -AuditLog
299282
This parameter is available only in on-premises Exchange.
300283

exchange/exchange-ps/exchange/policy-and-compliance/New-TransportRule.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2794,9 +2794,11 @@ Accept wildcard characters: False
27942794
```
27952795
27962796
### -ExceptIfSCLOver
2797+
This parameter is available or functional only in on-premises Exchange.
2798+
27972799
This parameter specifies an exception or part of an exception for the rule. The name of the corresponding condition doesn't include the ExceptIf prefix.
27982800
2799-
In on-premises Exchange, this exception is available on Mailbox servers and Edge Transport servers.
2801+
This exception is available on Mailbox servers and Edge Transport servers. This condition is not available or functional in the cloud-based service due to how the service filtering stack works.
28002802
28012803
The ExceptIfSCLOver parameter specifies an exception that looks for the SCL value of messages. Valid values are:
28022804
@@ -2810,7 +2812,7 @@ The rule looks for messages with an SCL value that's greater than or equal to th
28102812
Type: SclValue
28112813
Parameter Sets: (All)
28122814
Aliases:
2813-
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online, Exchange Online Protection
2815+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
28142816
Required: False
28152817
Position: Named
28162818
Default value: None
@@ -4571,9 +4573,11 @@ Accept wildcard characters: False
45714573
```
45724574
45734575
### -SCLOver
4576+
This parameter is available or functional only in on-premises Exchange.
4577+
45744578
This parameter specifies a condition or part of a condition for the rule. The name of the corresponding exception parameter starts with ExceptIf.
45754579
4576-
In on-premises Exchange, this condition is available on Mailbox servers and Edge Transport servers.
4580+
This exception is available on Mailbox servers and Edge Transport servers. This condition is not available or functional in the cloud-based service due to how the service filtering stack works.
45774581
45784582
The SCLOver parameter specifies a condition that looks for the SCL value of messages. Valid values are:
45794583
@@ -4587,7 +4591,7 @@ The rule looks for messages with an SCL value that's greater than or equal to th
45874591
Type: SclValue
45884592
Parameter Sets: (All)
45894593
Aliases:
4590-
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online, Exchange Online Protection
4594+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
45914595
Required: False
45924596
Position: Named
45934597
Default value: None

exchange/exchange-ps/exchange/policy-and-compliance/Set-ProtectionAlert.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Use the Set-ProtectionAlert cmdlet to modify alert policies in the Security & Co
1818

1919
For information about the parameter sets in the Syntax section below, see Exchange cmdlet syntax (https://technet.microsoft.com/library/bb123552.aspx).
2020

21+
2122
> [!NOTE]
2223
> You cannot use this cmdlet to edit default alert policies. You can only modify alerts you have created using New-ProtectionAlert cmdlet.
2324
@@ -39,9 +40,11 @@ Set-ProtectionAlert [-Identity] <ComplianceRuleIdParameter>
3940
[-NotifyUser <MultiValuedProperty>]
4041
[-NotifyUserOnFilterMatch <$true | $false>]
4142
[-NotifyUserSuppressionExpiryDate <DateTime>]
42-
[-NotifyUserThrottleThreshold <Int32>] [-NotifyUserThrottleWindow <Int32>]
43+
[-NotifyUserThrottleThreshold <Int32>]
44+
[-NotifyUserThrottleWindow <Int32>]
4345
[-Operation <MultiValuedProperty>]
44-
[-Severity <Low | Medium | High | None>] [-Threshold <Int32>]
46+
[-Severity <Low | Medium | High | None>]
47+
[-Threshold <Int32>]
4548
[-TimeWindow <Int32>]
4649
[-WhatIf] [<CommonParameters>]
4750
```
@@ -53,17 +56,18 @@ You need to be assigned permissions in the Office 365 Security & Compliance Cent
5356

5457
### -------------------------- Example 1 --------------------------
5558
```
56-
Insert example commands for example 1.
59+
Set-ProtectionAlert -Identity "Content search deleted" -Severity High
5760
```
5861

59-
Insert descriptive text for example 1.
62+
This example sets the Severity of the detection to High.
6063

6164
### -------------------------- Example 2 --------------------------
6265
```
63-
Insert example commands for example 2.
66+
Set-ProtectionAlert -Identity "Content search deleted" -NotifyUserOnFilterMatch:$true -AggregationType SimpleAggregation -Threshold 10 -TimeWindow 120
6467
```
6568

66-
Insert descriptive text for example 2.
69+
This example modifies an alert so that even though it's configured for aggregated activity, a notification is triggered during a match for the activity. A threshold of 10 detections and a TimeWindow of two hours are also configured in the same command.
70+
6771

6872
## PARAMETERS
6973

exchange/exchange-ps/exchange/policy-and-compliance/Set-TransportRule.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2774,9 +2774,11 @@ Accept wildcard characters: False
27742774
```
27752775
27762776
### -ExceptIfSCLOver
2777+
This parameter is available or functional only in on-premises Exchange.
2778+
27772779
This parameter specifies an exception or part of an exception for the rule. The name of the corresponding condition doesn't include the ExceptIf prefix.
27782780
2779-
In on-premises Exchange, this exception is available on Mailbox servers and Edge Transport servers.
2781+
This condition is available on Mailbox servers and Edge Transport servers. This condition is not available or functional in the cloud-based service due to how the service filtering stack works.
27802782
27812783
The ExceptIfSCLOver parameter specifies an exception that looks for the SCL value of messages. Valid values are:
27822784
@@ -2790,7 +2792,7 @@ The rule looks for messages with an SCL value that's greater than or equal to th
27902792
Type: SclValue
27912793
Parameter Sets: (All)
27922794
Aliases:
2793-
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online, Exchange Online Protection
2795+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
27942796
Required: False
27952797
Position: Named
27962798
Default value: None
@@ -4566,9 +4568,11 @@ Accept wildcard characters: False
45664568
```
45674569
45684570
### -SCLOver
4571+
This parameter is available or functional only in on-premises Exchange.
4572+
45694573
This parameter specifies a condition or part of a condition for the rule. The name of the corresponding exception parameter starts with ExceptIf.
45704574
4571-
In on-premises Exchange, this condition is available on Mailbox servers and Edge Transport servers.
4575+
This condition is available on Mailbox servers and Edge Transport servers. This condition is not available or functional in the cloud-based service due to how the service filtering stack works.
45724576
45734577
The SCLOver parameter specifies a condition that looks for the SCL value of messages. Valid values are:
45744578
@@ -4582,7 +4586,7 @@ The rule looks for messages with an SCL value that's greater than or equal to th
45824586
Type: SclValue
45834587
Parameter Sets: (All)
45844588
Aliases:
4585-
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online, Exchange Online Protection
4589+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
45864590
Required: False
45874591
Position: Named
45884592
Default value: None

exchange/exchange-ps/exchange/users-and-groups/Add-UnifiedGroupLinks.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,6 @@ The LinkType parameter specifies the Office 365 Group property that you want to
113113
114114
- Subscribers
115115
116-
- Aggregators
117-
118-
- EventSubscribers
119-
120116
```yaml
121117
Type: LinkType
122118
Parameter Sets: (All)

exchange/exchange-ps/exchange/users-and-groups/Set-User.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Set-User [-Identity] <UserIdParameter>
2525
[-AllowUMCallsFromNonUsers <None | SearchEnabled>]
2626
[-Arbitration]
2727
[-AssistantName <String>]
28+
[-AuthenticationPolicy <String>]
2829
[-CertificateSubject <MultiValuedProperty>]
2930
[-City <String>]
3031
[-Company <String>]
@@ -180,6 +181,21 @@ Accept pipeline input: False
180181
Accept wildcard characters: False
181182
```
182183
184+
### -AuthenticationPolicy
185+
The AuthenticationPolicy parameter specifies the authentication policy to apply to the user.
186+
187+
```yaml
188+
Type: String
189+
Parameter Sets: (All)
190+
Aliases:
191+
Applicable: Exchange Server 2019, Exchange Online
192+
Required: False
193+
Position: Named
194+
Default value: None
195+
Accept pipeline input: False
196+
Accept wildcard characters: False
197+
```
198+
183199
### -CertificateSubject
184200
This parameter is available only in on-premises Exchange.
185201

sharepoint/sharepoint-ps/sharepoint-online/New-SPOSite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Accept wildcard characters: False
130130
```
131131

132132
### -ResourceQuota
133-
Specifies the quota for this site collection in Sandboxed Solutions units. This value must not exceed the company’s aggregate available Sandboxed Solutions quota. The default value is 0. For more information, see Resource Usage Limits on Sandboxed Solutions in SharePoint (https://msdn.microsoft.com/en-us/library/gg615462.aspx).
133+
Specifies the quota for this site collection in Sandboxed Solutions units. This value must not exceed the company’s aggregate available Sandboxed Solutions quota. The default value is 0. For more information, see Resource Usage Limits on Sandboxed Solutions in SharePoint (https://msdn.microsoft.com/en-us/library/gg615462.aspx). Note that this parameter is now obsolete and has been deprecated.
134134

135135

136136
```yaml

skype/skype-ps/skype/Clear-CsOnlineTelephoneNumberReservation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Clear-CsOnlineTelephoneNumberReservation
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Complete-CsCceApplianceRegistration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Complete-CsCceApplianceRegistration
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Complete-CsCceApplianceUnregistration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Complete-CsCceApplianceUnregistration
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/ConvertTo-JsonForPSWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: ConvertTo-JsonForPSWS
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Copy-CsVoicePolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Lync Server 2013, Skype for Business Online
44
title: Copy-CsVoicePolicy
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer: rogupta
1010
---

skype/skype-ps/skype/Disable-CsMeetingRoom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Lync Server 2013, Skype for Business Online, Skype for Business Serv
44
title: Disable-CsMeetingRoom
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer: rogupta
1010
---

skype/skype-ps/skype/Disable-CsOnlineDialInConferencingUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Disable-CsOnlineDialInConferencingUser
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Disable-CsOnlineSipDomain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Disable-CsOnlineSipDomain
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer: rogupta
1010
---

skype/skype-ps/skype/Enable-CsMeetingRoom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Lync Server 2013, Skype for Business Online, Skype for Business Serv
44
title: Enable-CsMeetingRoom
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer: rogupta
1010
---

skype/skype-ps/skype/Enable-CsOnlineDialInConferencingUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Enable-CsOnlineDialInConferencingUser
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Enable-CsOnlineSipDomain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Enable-CsOnlineSipDomain
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer: rogupta
1010
---

skype/skype-ps/skype/Export-CsAutoAttendantHolidays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Export-CsAutoAttendantHolidays
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Export-CsOrganizationalAutoAttendantHolidays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Export-CsOrganizationalAutoAttendantHolidays
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Find-CsGroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Find-CsGroup
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Find-CsOnlineApplicationInstance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Find-CsOnlineApplicationInstance
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Get-CsAudioConferencingProvider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Get-CsAudioConferencingProvider
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Get-CsAutoAttendant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Get-CsAutoAttendant
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Get-CsAutoAttendantHolidays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Get-CsAutoAttendantHolidays
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Get-CsAutoAttendantStatus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Get-CsAutoAttendantStatus
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

skype/skype-ps/skype/Get-CsAutoAttendantSupportedLanguage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ applicable: Skype for Business Online
44
title: Get-CsAutoAttendantSupportedLanguage
55
schema: 2.0.0
66
manager: bulenteg
7-
author: tomtau
7+
author: tomkau
88
ms.author: tomkau
99
ms.reviewer:
1010
---

0 commit comments

Comments
 (0)