Holds: Retention Policy No Longer Works After a Mailbox is Moved From the On-Premises Environment to Exchange Online
Symptoms
When you transfer a mailbox from an on-premises Exchange setup to Exchange Online within a hybrid deployment, the retention policy associated with that mailbox ceases to function. You may encounter this problem despite having completed one or both of the actions listed below:
- You recreated the retention policy and assigned it to the mailbox.
- You recreated the retention tag and included it in the retention policy.
Cause
Retention hold has been activated on the mailbox. Typically, retention hold is automatically activated when a mailbox transitions from the on-premises environment to Exchange Online. When a mailbox is under retention hold, the application of the retention policy for that mailbox is halted. To verify that retention hold is enabled on a mailbox, follow these steps:
- Connect to Exchange Online by using remote PowerShell.
- Run the command-
Get-mailbox user@contoso.com |fl
- Examine the output. If the RetentionHoldEnabled parameter is set to True, retention hold is enabled.
Resolution
Disable retention hold on the mailbox via these steps:
- Connect to Exchange Online by using remote PowerShell.
- Run the command:
Set-Mailbox user@contoso.com -RetentionHoldEnabled $false
Conclusion
The issue regarding this particular hold is resolved via above method.
Comments
Post a Comment