Skip to content

Commit c8c279b

Browse files
authored
Update New-SensitiveInformationScanRule.md
1 parent d108d42 commit c8c279b

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

exchange/exchange-ps/exchange/New-SensitiveInformationScanRule.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,16 @@ To use this cmdlet in Security & Compliance PowerShell, you need to be assigned
4343
### Example 1
4444
```powershell
4545
New-SensitiveInformationScan "SharePoint scan" -SharePointLocation All
46+
4647
New-SensitiveInformationScanRule "SharePoint scan rule" -ContentExtensionMatchesWords "pdf", "docx" -Policy "SharePoint scan" -Workload SharePoint
4748
```
4849

49-
Above example creates a scan for all sharepoint sites scoped to pdf and docx files only. This cmdlet should be used in combination with New-SensitiveInformationScan.
50+
This example creates a scan for all SharePoint sites scoped to pdf and docx files only. Use the New-SensitiveInformationScanRule only in combination with New-SensitiveInformationScan.
5051

5152
## PARAMETERS
5253

5354
### -Name
54-
Specify rule name for the scan
55+
The Name parameter specifes the unique rule name for the scan. If the value contains spaces, enclose the value in quotation marks.
5556

5657
```yaml
5758
Type: String
@@ -67,7 +68,7 @@ Accept wildcard characters: False
6768
```
6869
6970
### -Policy
70-
Scan policy name that is parent of this rule
71+
The Policy parameter specifies the name of the parent scan policy for this rule. If the value contains spaces, enclose the value in quotation marks.
7172
7273
```yaml
7374
Type: PolicyIdParameter
@@ -160,7 +161,7 @@ Accept wildcard characters: False
160161
```
161162

162163
### -ContentCreatedOrUpdatedDateFrom
163-
If specified, files last modified after this date are considered in scope of scan.
164+
The ContentCreatedOrUpdatedDateFrom prameter specifies the earliest modification date-time of files that are considered in scope of this scan.
164165

165166
```yaml
166167
Type: System.DateTime
@@ -176,7 +177,7 @@ Accept wildcard characters: False
176177
```
177178

178179
### -ContentCreatedOrUpdatedDateTo
179-
Files last modified before this date are considered in scope of scan.
180+
The ContentCreatedOrUpdatedDateTo prameter specifies the latest modification date-time of files that are considered in scope of this scan.
180181

181182
```yaml
182183
Type: System.DateTime
@@ -260,8 +261,10 @@ Accept wildcard characters: False
260261
```
261262

262263
### -StartImpactAssessment
263-
Set to true to start an scan estimation by default. This needs to be passed as false to prevent starting scan estimation by default.
264+
The StartImpactAssessment parameter specifies whether to start a scan estimation. Valid values are:
264265

266+
- $true: Start an scan estimation by default.
267+
- $false: Prevent starting scan estimation by default.
265268

266269
```yaml
267270
Type: Boolean

0 commit comments

Comments
 (0)