Unable to Delete Mails from Outlook Web: Delayed hold and Delay Release hold Remove

Check and Disable Litigation hold.

  • Get-Mailbox <username> | FL LitigationHoldEnabled

  • Set-Mailbox <username> -LitigationHoldEnabled $false

Checked and Disable Single item recovery hold.

  • Get-Mailbox <username> | FL SingleItemRecoveryEnabled,RetainDeletedItemsFor

  • Set-Mailbox <username> -SingleItemRecoveryEnabled $false -RetainDeletedItemsFor 00

NOTE: It might take up to 240 minutes to disable single item recovery. Don't delete items in the Recoverable Items folder until this period has elapsed. Once the Single item recovery hold is removed, there are chances that Delay Hold and Delay Release Hold may apply for protection of our account. Check the Delay Hold and Delay Release Hold by below command.

  • Get-Mailbox <username> | FL DelayHoldApplied,DelayReleaseHoldApplied

  • Get-Mailbox <username> | FL *HoldApplied*

Once you confirm Delay Hold and Delay Release Hold are applied, remove the hold by below commands.

  • Set-Mailbox <username> -RemoveDelayHoldApplied

  • Set-Mailbox <username> -RemoveDelayReleaseHoldApplied

This will take time for the size to decrease as the hold removed may take time propagate as noted above. Once all Hold are removed, Run the Managed Folder Assistant 4-5 times to start the MRM process.

Start-ManagedFolderAssistant -identity User@domain.com -holdcleanu

Start-ManagedFolderAssistant -identity User@domain.com -FullCrawl

Last updated

Was this helpful?