Forum Discussion
Rising Flight
Jul 26, 2018Brass Contributor
litigation status
Hi experts
how do i pull the report for the all users for ligitation status.
i am looking something like
email address status
user1@mydomain.com enabled
user2@mydomain.com disabled.
how do i check litigation status for a single mailbox for example test@mydomain.com
It's visible in the Get-Mailbox output and you can filter for it:
Get-Mailbox -Filter {LitigationHoldEnabled -eq $true} -ResultSize Unlimited
It's visible in the Get-Mailbox output and you can filter for it:
Get-Mailbox -Filter {LitigationHoldEnabled -eq $true} -ResultSize Unlimited
Why do you want litigation status? Vasil's answer is spot on if you only want to report mailboxes on litigation/legal hold, but there are a ton of other holds that could be on a mailbox from Exchange in-place holds to Office 365 org-wide or non-org-wide retention policies.