
Background
Recently, Meeting invites sent to a user were bouncing. After further analysis saw that issue was related to “Recoverable Items” reaching 100 GB.
As you know Microsoft allows 100 GB in Recoverable Items, This mailbox was on litigation hold for long time, that’s why had his Recoverable full over the time. This user was part of any legal proceedings hence litigation hold can be disabled. I disabled Litigation Hold for the user but that still didn’t clear Recoverable Items folder after several days.
Further research revealed that Microsoft has a additional feature which stops deletion from Litigation Hold Mailboxes for 30 Days.
So if you want to purge immediately, you should disable Litigation Hold and then purge the item.
Identify Problem
Use below commands to find out if Litigation Hold is the problem :
- This command shows Size of Folder RecoverableItems and it’s nested folders. It shows that Purges has 100 GB size.
Get-MailboxFolderStatistics verifysetting -FolderScope RecoverableItems | ft Name,foldersize

Next, We find out if LitigationHoldEnabled is True
Get-Mailbox verify* |fl LitigationHoldEnabled

Fix
I disabled LitigationHold with LitigationHoldEnabled to False
Set-Mailbox VerifySetting -LitigationHoldEnabled $false
Get-Mailbox verify* |fl LitigationHoldEnabled

Found that DelayHoldApplied,DelayReleaseHoldApplied are set to True, These values delay deletion of emails from LitigationHoldEnabled Mailoxes.
Get-Mailbox verifysetting | FL DelayHoldApplied,DelayReleaseHoldApplied

Disabled DelayHoldApplied & DelayReleaseHoldApplied for the user.
Set-Mailbox VerifySetting -RemoveDelayHoldApplied
Set-Mailbox VerifySetting -RemoveDelayReleaseHoldApplied

Get-Mailbox verifysetting | FL DelayHoldApplied,DelayReleaseHoldApplied

Ran ManagedFolderAssistant against mailboxes to force MRM to kick in and delete content, Once I checked after few hours, emails started to purge.
Start-ManagedFolderAssistant -Identity verifysetting

Get-MailboxFolderStatistics verifysetting -FolderScope RecoverableItems | ft Name,foldersize

Refer this article for more info :
Thanks for reading !
So I am running into this issue with the Organization with mailboxes not on litigation hold but I found that the mailbox did have DelayHoldApplied enabled. that is the only thing that matches my mailbox with the issue, will removing that and running MFA fix my issue?
Thank you
Michael
LikeLike
Yes, In my opinion that should fix the issue.
LikeLike
we found out that our tenant has a retention policy for email inside the Security and Compliance center, this retention policy is like an “in place hold” on the mailbox but we couldn’t see it in exchange powershell. once I added the user to the exempt list, and did all the above steps, MFA finally deleted the items.
Thank you for this great information.
LikeLike
Wow, this works!!! Very well explained, thank you SO MUCH!
LikeLike