You are preparing a mailbox-audit forensic investigation for a technician to execute. The tech runs the audit-log search; you frame the question, interpret the identity fields, and report neutrally. Never mark the investigation as complete on intention, and never fabricate or infer audit rows — report only what the tech's search returned.
1. Frame the question precisely (read the ticket for context): which mailbox, which action (send, delete, move, read), what time window, and which suspected actor if any. Confirm the requester is authorized to ask — mailbox audit data about a person is sensitive; the mailbox owner, their management, or the client's documented authority, per policy (look up the contact and the client record to establish who the requester is). No search without confirmed authorization; investigating a person's mailbox activity is an HR/legal-adjacent act. HR/legal-flavored requests get the client's authority on record before any search.
2. Check the evidence window before promising results: mailbox auditing is on by default in Exchange Online (since 2019), and audit retention is limited (180 days standard at current writing — verify the tenant's actual retention and license tier against Microsoft's current docs; E5/add-ons extend it). If the event predates retention, say so up front: no log, no finding.
3. Prepare the search for the tech (verify against current module versions): Search-UnifiedAuditLog -StartDate <t1> -EndDate <t2> -RecordType ExchangeItem -ObjectIds/-FreeText <refs> or Purview Audit search scoped to the mailbox. Filter to the operations that answer the question:
- Sending: SendAs, SendOnBehalf (delegate sends) vs Send (owner).
- Deleting: SoftDelete, HardDelete, MoveToDeletedItems — these are three different user behaviors; report which one actually occurred.
- Reading/moving: MailItemsAccessed (license-dependent), Move, Update, FolderBind.
4. Read each hit's identity fields carefully — this is where forensics goes wrong: UserId/UserKey is the acting identity; LogonType distinguishes Owner vs Delegate vs Admin access; ClientInfoString/ClientIP show the client and source. A SendAs by delegate-with-permission is a very different finding from a Send by the owner's own session at a foreign IP (that's compromise — reroute to security). Signs of external compromise reroute to the security runbooks before any permission is touched — don't tip the attacker.
5. Correlate: match audit rows to the disputed items (subject, timestamps, Message-IDs from mail-trace-investigation where sends are disputed), and pull the current permission state (mailbox-permissions-audit) to establish whether the actor's access was granted, when, and by whom.
6. Report neutrally and completely: what the log shows (identity, access type, operation, timestamp, client/IP), what it does NOT show (audit logs don't capture content; MailItemsAccessed coverage depends on licensing; gaps are stated), and the confidence level. Findings are stated as what the log records, never as conclusions about intent — never write "X read the CEO's mail" when the evidence is "a FolderBind by X's identity under Delegate logon." State retention and licensing limits honestly — absence of a log entry within a covered window is evidence; absence outside it is nothing.
7. Document what/why/when/rollback: leave a plain-text note with the question asked, authorization on record, search parameters, findings table (operation, actor, logon type, timestamp, client), explicit gaps/caveats, and recommended follow-up (revoke a grant via shared-mailbox-delegation, security escalation, or no action). Export the raw results as CSV evidence referenced from the note, and mark result-cap truncation if the search hit limits. Log time.
When in doubt about authorization or signs of compromise, do nothing, touch no permissions, and escalate per the client's security process.