Hello, @IniobongNkanga-8038,
Welcome to the Microsoft Q&A platform!
The error you encountered indicates that when you try to enable an archive, Exchange is attempting to read a value (tracking a prior archive “disconnect” or removal date) that doesn’t seem to be there (or isn’t in the expected state).
Since you are able to enable archives for other users and diagnostic tools haven’t flagged any obvious infrastructure problems, the issue seems to be isolated to this specific mailbox’s metadata or configuration. Here are a few additional steps you can try to resolve the error:
1.Check for Existing Archive: Double-check if there's any existing archive for the user:
Get-Mailbox -Identity "******@XXXXX.de" | Select-Object ArchiveStatus
2.Clear Any Previous Archive Data: Sometimes remnants of a previous archive can cause issues. You can try clearing any previous archive data:
Set-Mailbox -Identity "******@XXXXX.de" -ArchiveDatabase $null
3.Enable Archive Again: After clearing, try enabling the archive again:
Enable-Mailbox -Identity "******@XXXXX.de" -Archive
4.Check Arbitration Mailboxes: Ensure all arbitration mailboxes are healthy, as unhealthy arbitration mailboxes can cause issues in the Exchange Admin Center:
Get-Mailbox -Arbitration
5.Review Event Logs: Check the Event Viewer for any related errors that might give more insight into the issue.
If none of the above steps resolve the issue, consider gathering the full error details (including RequestId and TimeStamp from the error) and opening a support case with Microsoft. They can investigate on the back end if a residual object or misconfigured attribute is causing the failure.
Should you need more help on this, you can feel free to post back.
If the answer is helpful, please click on “Accept answer” as it could help other members of the Microsoft Q&A community who have similar questions and are looking for solutions.
Thank you for your support and understanding.
Best Wishes,
Alex Zhang