Skip to content

Commit 036048d

Browse files
committed
Copilot updates per email request
1 parent f601ef1 commit 036048d

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

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/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

0 commit comments

Comments
 (0)