I've been trying to figure out how a few security settings in M365 tenant can be configured via Powershell. I was looking into Privacy Management in the admin console which has a bunch of settings I required, for eg- data retention period for subject right requests. I was not able to find anything in the Microsoft documentations, but by some hit and trial I found a command - Get-PrivacyManagementRule . Turns out it has a lot of settings I was looking for. I'm currently not sure whether I can use this command or this will eventually be deprecated since there is literally 0 information about this command from Microsoft. Can anyone with more info on this help me out ?
Asked
Active
Viewed 56 times
0
-
1Try this: Get-Command Get-PrivacyManagementRule – Mike Shepard Feb 02 '22 at 15:10
-
Not sure about that specific cmdlet, but might you be looking for something more like Get-RetentionPolicy? – Dallas Feb 02 '22 at 17:18
-
Get-RetentionPolicy will give me the retention set for the normal data. I'm looking for the retention period for the data and reports during a Subject Rights Request. You can find that option in the UI at : Compliance portal-> Solutions-> Privacy Risk Management-> Data Profile-> Settings-> Data retention periods – Prakhar Athreya Feb 03 '22 at 03:35