exchange 2013 on-premise
How do I find all the mailboxes that litigation hold is applied to??
Technology Tips and News
exchange 2013 on-premise
How do I find all the mailboxes that litigation hold is applied to??
Try:
Get-Mailbox -ResultSize Unlimited | where {$_.LitigationHoldEnabled -eq $False}
Hi Jam,
Agree with Hinte, however, according to your requirement, you should change the value $false to $true.
Best regards,