Looking to automate the admin tasks we hav eto do in our powerplatform.
Using powershell to add th ecommans to our pipline.
I can see th ecommand to to create DLPs and add connectors to DLPs liek this:
Add-ConnectorToBusinessDataGroup -PolicyName 'PolicyName' –ConnectorName 'ConnectorName'
But cannot see a PowerShell command to assign Enviroments to a DLP, remove an Environment form a DLP.
Exclude Environment form Tenant DLP.
Does anyone have details on to do this with PowerShell?
This is great Thank you.
we will get testing this next week
Thank you again
You can use the Set-AdminDlpPolicy to create include or exclude filters on environments. Here are some examples
-------------------------- EXAMPLE 2 -------------------------- PS C:\>Set-AdminDlpPolicy -PolicyName 78d6c98c-aaa0-4b2b-91c3-83d211754d8a -FilterType Include -Environments "febb5387-84d7-4717-8345-334a34402f3d,83d98843-bfd7-47ef-bfcd-dc628810ae7b" Only applies the policy to the environments febb5387-84d7-4717-8345-334a34402f3d and 83d98843-bfd7-47ef-bfcd-dc628810ae7b. -------------------------- EXAMPLE 3 -------------------------- PS C:\>Set-AdminDlpPolicy -PolicyName 78d6c98c-aaa0-4b2b-91c3-83d211754d8a -FilterType Exclude -Environments "febb5387-84d7-4717-8345-334a34402f3d,83d98843-bfd7-47ef-bfcd-dc628810ae7b" Applies the policy to all environments except febb5387-84d7-4717-8345-334a34402f3d and 83d98843-bfd7-47ef-bfcd-dc628810ae7b.
Michael E. Gernaey
11
Super User 2025 Season 1
bscarlavai33
5
Super User 2025 Season 1
getsplash
2