A unified data governance solution that helps manage, protect, and discover data across your organization
Hello,
I had similar problem today. The the solution was to:
Used Exchange Online in Powershell as @Pauline Mbabu said.
But when I ran :
Set-AdminAuditLogConfig -UnifiedAuditLogIngestionEnabled $true
I got an error:
BadRequest: Error executing cmdlet : { "code": "BadRequest", "message": "Error executing cmdlet", "details": [ { "code": "Context", "target": "AdminAuditLogConfig", "message": "|Microsoft.Exchange.Configuration.Tasks.InvalidOperationInDehydratedContextException|The command you tried to run isn't currently al lowed in your organization. To run this command, you first need to run the command: Enable-OrganizationCustomization."
So then you run:
Enable-OrganizationCustomization.
Verify if it is ok with command below. It should say false:
Get-OrganizationConfig | FL IsDehydrated
Then you can use this commends to enable audit and verify. Can take up to 60min.
Set-AdminAuditLogConfig -UnifiedAuditLogIngestionEnabled $true
Get-AdminAuditLogConfig | FL UnifiedAuditLogIngestionEnabled
After you can refresh the UI at purview site. The notification should not be there anymore.