Query on Audit Logs

Roger Roger 7,181 Reputation points
2024-09-17T05:39:33.4333333+00:00

Hi All, i have a shared mailbox lets say ******@mydomain.com in exchange online. i have mailbox rules or outlook rules and one of the outlook rule was modified. i want to check in audit logs who modified the rule. please guide me

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,173 questions
Exchange | Exchange Server | Other
Exchange | Exchange Server | Management
Exchange | Hybrid management
0 comments No comments
{count} votes

Accepted answer
  1. Anonymous
    2024-09-17T08:25:13.2133333+00:00

    Hi @Roger Roger ,

    Welcome to the Microsoft Q&A platform!

    According to your description, to check who modified the mailbox rules in the shared mailbox in Exchange Online, you can use the audit log. Here is a step-by-step guide to help you:

    1. By default, mailbox auditing is enabled for all mailboxes. You can verify this by running the following command in Exchange Online PowerShell:
    Get-OrganizationConfig | Format-List AuditDisabled
    

    If the value is False, it means that auditing is enabled.

    1. Run an audit log search:
    • Open the Microsoft 365 Compliance Center.
    • Navigate to Solutions > Audit > Search.
    • Use the search parameters to specify the date range and mailbox (for example, ******@mydomain.com).
    • Find actions related to rule modifications.
    1. You can also use PowerShell to search the audit log. Here is a sample script:
    Search-MailboxAuditLog -Mailbox "******@mydomain.com" -LogonTypes Owner -StartDate "2024-09-01" -EndDate "2024-09-17" -Operations UpdateInboxRule
    

    This command searches for any updates to the Inbox rule within the specified date range.

    1. The results will show who made the change, as well as the date and time of the modification.

    Please feel free to contact me for any updates. And if this helps, don't forget to mark it as an answer.

    Best,

    Jake Zhang


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.