Skip to content

Commit e898c4c

Browse files
Merge pull request #13115 from MicrosoftDocs/main
[AutoPublish] main to live - 09/18 10:31 PDT | 09/18 23:01 IST
2 parents 2a14145 + ea28e3a commit e898c4c

File tree

5 files changed

+87
-9
lines changed

5 files changed

+87
-9
lines changed

exchange/exchange-ps/ExchangePowerShell/Export-ContentExplorerData.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ title: Export-ContentExplorerData
1313
# Export-ContentExplorerData
1414

1515
## SYNOPSIS
16-
**Note**: This cmdlet is currently in Preview and is subject to change.
17-
1816
This cmdlet is available only in Security & Compliance PowerShell. For more information, see [Security & Compliance PowerShell](https://learn.microsoft.com/powershell/exchange/scc-powershell).
1917

2018
Use the Export-ContentExplorerData cmdlet to export data classification file details in Microsoft Purview compliance.

exchange/exchange-ps/ExchangePowerShell/New-DlpCompliancePolicy.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ $guidVar = "e222b65a-b3a8-46ec-ae12-00c2c91b71c0"
104104
105105
$loc = "[{"Workload":"Applications","Location":"470f2276-e011-4e9d-a6ec-20768be3a4b0","Inclusions":[{Type:"Tenant", Identity:"All"}]}]"
106106
107-
New-DLPCompliancePolicy -Name "Copilot Policy" -Locations $loc
107+
New-DLPCompliancePolicy -Name "Copilot Policy" -Locations $loc -EnforcementPlanes @("CopilotExperiences")
108108
109109
$advRule = @{
110110
"Version" = "1.0"
@@ -137,7 +137,7 @@ $advRule = @{
137137
New-DLPComplianceRule -Name "Copilot Rule" -Policy "Copilot Policy" -AdvancedRule $advrule -RestrictAccess @(@{setting="ExcludeContentProcessing";value="Block"})
138138
```
139139

140-
This example creates a DLP policy for Microsoft 365 Copilot (Preview) in several steps:
140+
This example creates a DLP policy for Microsoft 365 Copilot in several steps:
141141

142142
- The first command returns information about all sensitivity labels. Select the GUID value of the sensitivity label that you want to use. For example, `e222b65a-b3a8-46ec-ae12-00c2c91b71c0`.
143143

@@ -320,10 +320,12 @@ The EnforcementPlanes parameter defines the layer where policy actions are run.
320320

321321
`-EnforcementPlanes @("<Value>")`.
322322

323-
Currently, supported values are:
323+
Valid values are:
324324

325-
- Entra: For use with policies applied to Entra-registered enterprise applications in the organization.
326325
- Browser: For use with policies applied to unmanaged cloud apps in Edge for Business.
326+
- CopilotExperiences
327+
- Entra: For use with policies applied to Entra-registered enterprise applications in the organization.
328+
- Network
327329

328330
```yaml
329331
Type: MultiValuedProperty
@@ -548,7 +550,7 @@ Accept wildcard characters: False
548550
The Locations parameter specifies to whom, what, and where the DLP policy applies. This parameter uses the following properties:
549551

550552
- Workload: What the DLP policy applies to. Use the value `Applications`.
551-
- Location: Where the DLP policy applies. For Microsoft 365 Copilot, (Preview), use the value `470f2276-e011-4e9d-a6ec-20768be3a4b0`.
553+
- Location: Where the DLP policy applies. For Microsoft 365 Copilot, use the value `470f2276-e011-4e9d-a6ec-20768be3a4b0`.
552554
- Inclusions: Who the DLP policy applies to. For users, use the email address in this syntax: `{Type:IndividualResource,Identity:<EmailAddress>}`. For security groups or distribution groups, use the ObjectId value of the group from the Microsoft Entra portal in this syntax: `{Type:Group,Identity:<ObjectId>}`. For the entire tenant, use this value: `{Type:"Tenant",Identity:"All"}`.
553555
- Exclusions: Exclude security groups, distribution groups, or users from the scope of this DLP policy. For users, use the email address in this syntax: `{Type:IndividualResource,Identity:<EmailAddress>}`. For groups, use the ObjectId value of the group from the Microsoft Entra portal in this syntax: `{Type:Group, Identity:<ObjectId>}`.
554556

exchange/exchange-ps/ExchangePowerShell/New-LabelPolicy.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ New-LabelPolicy -Name <String> -Labels <MultiValuedProperty>
2626
[-AdvancedSettings <PswsHashtable>]
2727
[-Comment <String>]
2828
[-Confirm]
29+
[-ExchangeAdaptiveScopes <MultiValuedProperty>]
30+
[-ExchangeAdaptiveScopesException <MultiValuedProperty>]
2931
[-ExchangeLocation <MultiValuedProperty>]
3032
[-ExchangeLocationException <MultiValuedProperty>]
3133
[-Force]
@@ -189,6 +191,42 @@ Accept pipeline input: False
189191
Accept wildcard characters: False
190192
```
191193

194+
### -ExchangeAdaptiveScopes
195+
196+
> Applicable: Security & Compliance
197+
198+
{{ Fill ExchangeAdaptiveScopes Description }}
199+
200+
```yaml
201+
Type: MultiValuedProperty
202+
Parameter Sets: (All)
203+
Aliases:
204+
205+
Required: False
206+
Position: Named
207+
Default value: None
208+
Accept pipeline input: False
209+
Accept wildcard characters: False
210+
```
211+
212+
### -ExchangeAdaptiveScopesException
213+
214+
> Applicable: Security & Compliance
215+
216+
{{ Fill ExchangeAdaptiveScopesException Description }}
217+
218+
```yaml
219+
Type: MultiValuedProperty
220+
Parameter Sets: (All)
221+
Aliases:
222+
223+
Required: False
224+
Position: Named
225+
Default value: None
226+
Accept pipeline input: False
227+
Accept wildcard characters: False
228+
```
229+
192230
### -ExchangeLocation
193231

194232
> Applicable: Security & Compliance

exchange/exchange-ps/ExchangePowerShell/Set-DlpCompliancePolicy.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,10 +624,12 @@ The EnforcementPlanes parameter defines the layer where policy actions are run.
624624

625625
`-EnforcementPlanes @("<Value>")`.
626626

627-
Currently, supported values are:
627+
Valid values are:
628628

629-
- Entra: For use with policies applied to Entra-registered enterprise applications in the organization.
630629
- Browser: For use with policies applied to unmanaged cloud apps in Edge for Business.
630+
- CopilotExperiences
631+
- Entra: For use with policies applied to Entra-registered enterprise applications in the organization.
632+
- Network
631633

632634
```yaml
633635
Type: MultiValuedProperty

exchange/exchange-ps/ExchangePowerShell/Set-LabelPolicy.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ Set-LabelPolicy [-Identity] <PolicyIdParameter>
5252
[-AdvancedSettings <PswsHashtable>]
5353
[-Comment <String>]
5454
[-Confirm]
55+
[-ExchangeAdaptiveScopes <MultiValuedProperty>]
56+
[-ExchangeAdaptiveScopesException <MultiValuedProperty>]
5557
[-MigrationId <String>]
5658
[-NextLabelPolicy <PolicyIdParameter>]
5759
[-PolicyRBACScopes <MultiValuedProperty>]
@@ -477,6 +479,42 @@ Accept pipeline input: False
477479
Accept wildcard characters: False
478480
```
479481

482+
### -ExchangeAdaptiveScopes
483+
484+
> Applicable: Security & Compliance
485+
486+
{{ Fill ExchangeAdaptiveScopes Description }}
487+
488+
```yaml
489+
Type: MultiValuedProperty
490+
Parameter Sets: Identity
491+
Aliases:
492+
493+
Required: False
494+
Position: Named
495+
Default value: None
496+
Accept pipeline input: False
497+
Accept wildcard characters: False
498+
```
499+
500+
### -ExchangeAdaptiveScopesException
501+
502+
> Applicable: Security & Compliance
503+
504+
{{ Fill ExchangeAdaptiveScopesException Description }}
505+
506+
```yaml
507+
Type: MultiValuedProperty
508+
Parameter Sets: Identity
509+
Aliases:
510+
511+
Required: False
512+
Position: Named
513+
Default value: None
514+
Accept pipeline input: False
515+
Accept wildcard characters: False
516+
```
517+
480518
### -Force
481519

482520
> Applicable: Security & Compliance

0 commit comments

Comments
 (0)