Forum Discussion
Jitendra Bhosale
Apr 09, 2018Copper Contributor
Search-AdminAuditLog The attempt to search the administrator audit log failed. Please try again late
Hi All, Getting below error while running command on our Exchange 2016 server. We have 2 servers and same error on both servers. Its hybrid environment with O365 but no any mailboxes on-premise. ...
Jitendra Bhosale
Apr 27, 2018Copper Contributor
Thanks Mitch for responding.
but when we check more on that we found discovery mailboxes. It was because of ViewEntireForest false we were not able see it.
Do you have any other suggestion
Mitch King
May 01, 2018Iron Contributor
Are you in the Records Management role group?
- Jitendra BhosaleMay 01, 2018Copper Contributor
Yes, it is
- Jitendra BhosaleDec 07, 2018Copper Contributor
Hello guys any help
- ReedKimbleDFTOct 07, 2022Copper Contributor
This info lead to the fix for me:
https://learn.microsoft.com/en-us/exchange/security-and-compliance/exchange-auditing-reports/view-administrator-audit-logI used this script to enable all mailboxes:
$mailboxes = Get-EXOMailbox ForEach ($m in $mailboxes) { Set-Mailbox -Identity $m.UserPrincipalName -AuditEnabled $true }