Skip to content

Commit 2f8c347

Browse files
authored
Update New-SensitiveInformationScan.md
1 parent 17a1f2a commit 2f8c347

File tree

1 file changed

+176
-1
lines changed

1 file changed

+176
-1
lines changed

exchange/exchange-ps/exchange/New-SensitiveInformationScan.md

Lines changed: 176 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in Security & Compliance PowerShell. For more information, see [Security & Compliance PowerShell](https://learn.microsoft.com/powershell/exchange/scc-powershell).
1616

17-
Use the New-SensitiveInformationScan cmdlet to create a new on-demand classification scan. Learn more about On-demand classification [https://learn.microsoft.com/purview/on-demand-classification].
17+
Use the New-SensitiveInformationScan cmdlet to create new on-demand classification scans. Learn more about on-demand classifications at [On-demand classification](https://learn.microsoft.com/purview/on-demand-classification).
1818

1919
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://learn.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).
2020

@@ -28,10 +28,20 @@ New-SensitiveInformationScan [-Name] <String>
2828
[-EndpointDlpLocationException <MultiValuedProperty>]
2929
[-ExceptIfOneDriveSharedBy <RecipientIdParameter[]>]
3030
[-ExceptIfOneDriveSharedByMemberOf <RecipientIdParameter[]>]
31+
[-ExchangeLocation <MultiValuedProperty>]
32+
[-ExchangeSender <SmtpAddress[]>]
33+
[-ExchangeSenderException <SmtpAddress[]>]
34+
[-ExchangeSenderMemberOf <RecipientIdParameter[]>]
35+
[-ExchangeSenderMemberOfException <RecipientIdParameter[]>]
36+
[-OneDriveLocation <MultiValuedProperty>]
37+
[-OneDriveLocationException <MultiValuedProperty>]
3138
[-OneDriveSharedBy <RecipientIdParameter[]>]
3239
[-OneDriveSharedByMemberOf <RecipientIdParameter[]>]
40+
[-PolicyRBACScopes <MultiValuedProperty>]
3341
[-SharePointLocation <MultiValuedProperty>]
3442
[-SharePointLocationException <MultiValuedProperty>]
43+
[-TeamsLocation <MultiValuedProperty>]
44+
[-TeamsLocationException <MultiValuedProperty>]
3545
[-WhatIf]
3646
[<CommonParameters>]
3747
```
@@ -191,6 +201,112 @@ Accept pipeline input: False
191201
Accept wildcard characters: False
192202
```
193203

204+
### -ExchangeLocation
205+
This parameter is reserved for internal Microsoft use.
206+
207+
```yaml
208+
Type: MultiValuedProperty
209+
Parameter Sets: (All)
210+
Aliases:
211+
Applicable: Security & Compliance
212+
Required: False
213+
Position: Named
214+
Default value: None
215+
Accept pipeline input: False
216+
Accept wildcard characters: False
217+
```
218+
219+
### -ExchangeSender
220+
This parameter is reserved for internal Microsoft use.
221+
222+
```yaml
223+
Type: SmtpAddress[]
224+
Parameter Sets: (All)
225+
Aliases:
226+
Applicable: Security & Compliance
227+
Required: False
228+
Position: Named
229+
Default value: None
230+
Accept pipeline input: False
231+
Accept wildcard characters: False
232+
```
233+
234+
### -ExchangeSenderException
235+
This parameter is reserved for internal Microsoft use.
236+
237+
```yaml
238+
Type: SmtpAddress[]
239+
Parameter Sets: (All)
240+
Aliases:
241+
Applicable: Security & Compliance
242+
Required: False
243+
Position: Named
244+
Default value: None
245+
Accept pipeline input: False
246+
Accept wildcard characters: False
247+
```
248+
249+
### -ExchangeSenderMemberOf
250+
This parameter is reserved for internal Microsoft use.
251+
252+
```yaml
253+
Type: RecipientIdParameter[]
254+
Parameter Sets: (All)
255+
Aliases:
256+
Applicable: Security & Compliance
257+
Required: False
258+
Position: Named
259+
Default value: None
260+
Accept pipeline input: False
261+
Accept wildcard characters: False
262+
```
263+
264+
### -ExchangeSenderMemberOfException
265+
This parameter is reserved for internal Microsoft use.
266+
267+
```yaml
268+
Type: RecipientIdParameter[]
269+
Parameter Sets: (All)
270+
Aliases:
271+
Required: False
272+
Position: Named
273+
Default value: None
274+
Accept pipeline input: False
275+
Accept wildcard characters: False
276+
```
277+
278+
### -OneDriveLocation
279+
This parameter is reserved for internal Microsoft use.
280+
281+
```yaml
282+
Type: MultiValuedProperty
283+
Parameter Sets: (All)
284+
Aliases:
285+
Applicable: Security & Compliance
286+
Required: False
287+
Position: Named
288+
Default value: None
289+
Accept pipeline input: False
290+
Accept wildcard characters: False
291+
```
292+
293+
### -OneDriveLocationException
294+
This parameter specifies the OneDrive sites to exclude when you use the value All for the OneDriveLocation parameter. You identify the site by its URL value.
295+
296+
You can enter multiple values separated by commas. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"Value1","Value2",..."ValueN"`.
297+
298+
```yaml
299+
Type: MultiValuedProperty
300+
Parameter Sets: (All)
301+
Aliases:
302+
Applicable: Security & Compliance
303+
Required: False
304+
Position: Named
305+
Default value: None
306+
Accept pipeline input: False
307+
Accept wildcard characters: False
308+
```
309+
194310
### -OneDriveSharedBy
195311
The OneDriveSharedBy parameter specifies the users to include in the scan (the sites of the OneDrive user accounts are included in the scan). You identify the users by UPN (`[email protected]`).
196312

@@ -237,6 +353,21 @@ Accept pipeline input: False
237353
Accept wildcard characters: False
238354
```
239355

356+
### -PolicyRBACScopes
357+
This parameter is reserved for internal Microsoft use.
358+
359+
```yaml
360+
Type: MultiValuedProperty
361+
Parameter Sets: (All)
362+
Aliases:
363+
Applicable: Security & Compliance
364+
Required: False
365+
Position: Named
366+
Default value: None
367+
Accept pipeline input: False
368+
Accept wildcard characters: False
369+
```
370+
240371
### -SharePointLocation
241372
The SharePointLocation parameter specifies the SharePoint sites to include in the scan. You identify the site by its URL value, or you can use the value All to include all sites.
242373

@@ -277,6 +408,50 @@ Accept pipeline input: False
277408
Accept wildcard characters: False
278409
```
279410

411+
### -TeamsLocation
412+
This parameter is reserved for internal Microsoft use.
413+
414+
```yaml
415+
Type: MultiValuedProperty
416+
Parameter Sets: (All)
417+
Aliases:
418+
Applicable: Security & Compliance
419+
Required: False
420+
Position: Named
421+
Default value: None
422+
Accept pipeline input: False
423+
Accept wildcard characters: False
424+
```
425+
426+
### -TeamsLocationException
427+
This parameter is reserved for internal Microsoft use.
428+
429+
```yaml
430+
Type: MultiValuedProperty
431+
Parameter Sets: (All)
432+
Aliases:
433+
Applicable: Security & Compliance
434+
Required: False
435+
Position: Named
436+
Default value: None
437+
Accept pipeline input: False
438+
Accept wildcard characters: False
439+
```
440+
441+
### -WhatIf
442+
The WhatIf switch doesn't work in Security & Compliance PowerShell.
443+
444+
```yaml
445+
Type: SwitchParameter
446+
Parameter Sets: (All)
447+
Aliases: wi
448+
Applicable:
449+
Required: False
450+
Position: Named
451+
Default value: None
452+
Accept pipeline input: False
453+
Accept wildcard characters: False
454+
```
280455

281456
### CommonParameters
282457
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/p/?LinkID=113216).

0 commit comments

Comments
 (0)