Skip to content

Commit 915e7b5

Browse files
authored
Merge pull request MicrosoftDocs#1747 from MicrosoftDocs/chrisda
Updates to New/Set-SupervisoryReviewPolicy
2 parents a5785f3 + 146fcfc commit 915e7b5

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You need to be assigned permissions in the Office 365 Security & Compliance Cent
2929

3030
### -------------------------- Example 1 --------------------------
3131
```
32-
New-SupervisoryReviewRule -Name "EU Brokers Rule" -Policy "EU Brokers Policy" -SamplingRate 100 -Conditions {(NOT(Reviewee:US Compliance)) -AND (Reviewee:EU Brokers) -AND ((trade) -OR (insider trading)) -AND (NOT(approved by the Contoso financial team))}
32+
New-SupervisoryReviewRule -Name "EU Brokers Rule" -Policy "EU Brokers Policy" -SamplingRate 100 -Conditions ((NOT(Reviewee:US Compliance)) -AND (Reviewee:EU Brokers) -AND ((trade) -OR (insider trading)) -AND (NOT(approved by the Contoso financial team)))
3333
```
3434

3535
This example creates a new supervisory review rule named EU Brokers Rule with the following settings:
@@ -87,19 +87,19 @@ The Condition parameter specifies the conditions and exceptions for the rule. Th
8787
8888
- Direction: ((Direction:Inbound) -OR (Direction:Outbound) -OR (Direction:Internal)).
8989
90-
- Message contains words: ((\<Word1orPhrase1\>)-OR (\<Word2orPhrase2\>)...). Exceptions use the syntax (NOT((\<Word1orPhrase1\>)-OR (\<Word2orPhrase2\>)...)).
90+
- Message contains words: ((\<Word1orPhrase1\>) -OR (\<Word2orPhrase2\>)...). Exceptions use the syntax (NOT((\<Word1orPhrase1\>)-OR (\<Word2orPhrase2\>)...)).
9191
92-
- Any attachment contains words: ((Attachment:\<word1\>)-OR (Attachment:\<word2\>)...). Exceptions use the syntax (NOT((Attachment:\<word1\>)-OR (Attachment:\<word2\>)...)).
92+
- Any attachment contains words: ((Attachment:\<word1\>) -OR (Attachment:\<word2\>)...). Exceptions use the syntax (NOT((Attachment:\<word1\>)-OR (Attachment:\<word2\>)...)).
9393
94-
- Any attachment has the extension: ((AttachmentName:.\<extension1\>)-OR (AttachmentName:.\<extension2\>)...). Exceptions use the syntax (NOT((AttachmentName:.\<extension1\>)-OR (AttachmentName:.\<extension2\>)...)).
94+
- Any attachment has the extension: ((AttachmentName:.\<extension1\>) -OR (AttachmentName:.\<extension2\>)...). Exceptions use the syntax (NOT((AttachmentName:.\<extension1\>)-OR (AttachmentName:.\<extension2\>)...)).
9595
9696
- Message size is larger than: (MessageSize:\<size in B, KB, MB or GB\>). For example (MessageSize:300KB). Exceptions use the syntax (NOT(MessageSize:\<size in B, KB, MB or GB\>))
9797
9898
- Any attachment is larger than: (AttachmentSize:\<size in B, KB, MB or GB\>). For example (AttachmentSize:3MB). Exceptions use the syntax (NOT(AttachmentSize:\<size in B, KB, MB or GB\>))
9999
100-
- Braces { } are required around the whole filter.
100+
- Parentheses ( ) are required around the whole filter.
101101
102-
- Separate multiple conditions or exception types with the -AND operator. For example, {(Reviewee:[email protected]) -AND (AttachmentSize:3MB)}.
102+
- Separate multiple conditions or exception types with the -AND operator. For example, ((Reviewee:[email protected]) -AND (AttachmentSize:3MB)).
103103
104104
```yaml
105105
Type: String

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ The Condition parameter specifies the conditions and exceptions for the rule. Th
7474
7575
- Any attachment is larger than: (AttachmentSize:\<size in B, KB, MB or GB\>). For example (AttachmentSize:3MB). Exceptions use the syntax (NOT(AttachmentSize:\<size in B, KB, MB or GB\>))
7676
77-
- Braces { } are required around the whole filter.
77+
- Parentheses ( ) are required around the whole filter.
7878
79-
- Separate multiple conditions or exception types with the -AND operator. For example, {(Reviewee:[email protected]) -AND (AttachmentSize:3MB)}.
79+
- Separate multiple conditions or exception types with the -AND operator. For example, ((Reviewee:[email protected]) -AND (AttachmentSize:3MB)).
8080
8181
```yaml
8282
Type: String

0 commit comments

Comments
 (0)