Hello,
We have a soft-deleted MailUser in Exchange Online that cannot be permanently removed. The object was originally synced from an on-prem Exchange Server 2019 environment and was on Litigation Hold.
Observations / Evidence
- The object is listed as a soft-deleted MailUser:
Get-MailUser -SoftDeletedMailUser | FL Name,InPlaceHolds,LitigationHoldEnabled
LitigationHoldEnabled: False
InPlaceHolds: Contains legacy -mbx<GUID> values from on-premises Litigation Hold
There are no cloud retention policies in the tenant:
Get-RetentionCompliancePolicy | Select Name,ExchangeLocation,Guid
Command returns blank
Attempts to remove the object fail:
Remove-MailUser -Identity <SoftDeletedMailUser> -Permanent
Error: “Unable to permanently delete mail enabled user. The mail enabled user has litigation hold or In-Place hold applied on it.”
Attempts to restore the object as a mailbox in Exchange Online also fail:
Enable-Mailbox -Identity <SoftDeletedMailUser>
Error: Object not found
Analysis
The InPlaceHolds are legacy metadata from the on-prem Litigation Hold
Exchange Online does not allow deletion of soft-deleted mail-enabled users with these orphaned holds
There are no cloud retention policies, so normal bypass methods don’t apply
The object cannot be restored as a mailbox because it never existed in Exchange Online as a full mailbox
Request / Question
Has anyone encountered a similar scenario with orphaned soft-deleted MailUsers with legacy on-prem holds?
What is the supported method to permanently remove these objects from Exchange Online?
Is contacting Microsoft Support for backend deletion the only solution?
Thank you for any guidance or suggestions.