Posts from April 3, 2025

Latest Comments

No comments to show.

[Powershell] Mailbox Hold Troubleshooting

Get-Mailbox -Identity yourmailbox@email.com | FL LitigationHoldEnabled,InplaceHolds,Compl*,Delay*,Inplace* Set-Mailbox -Identity yourmailbox@email.com -RemoveDelayHoldApplied Set-Mailbox -Identity yourmailbox@email.com -LitigationHoldEnabled $false

[Powershell] Inactive Mailboxes

Look for inactive mailboxes in your exchange environment (Get-Mailbox -IncludeInactiveMailbox | where IsInactiveMailbox -eq "True") | Get-Mailbox[…]

[Powershell] – Deleted Items Folder

Get a count your Recovery Items inbox Get-MailboxFolderStatistics youremail@address.com -FolderScope RecoverableItems | fl Name,FolderAndSubfolderSize,ItemsInFolderAndSubfolders