Issue:
Accidentally deleted a shared mailbox from our O365 tenant and are having trouble restoring it. Once it’s been restored, it shows an error that states “The operation couldn't be performed because object '01dd23e5-905c-47eb-811f-8ce255c1d797' couldn't be found on 'MWHPR09A003DC01.NAMPR09A003.PROD.OUTLOOK.COM'.”
Resolution:
Download the PowerShell from Exchange online EAC-> Hybrid -> Select 2 option of configure
Run the below script:
Start-Transcript
Get-Mailbox -ResultSize unlimited
Get-Mailbox -SoftDeletedmailbox
Get-Mailbox -Inactivemailboxonly
Get-mailbox (mailbox address) | fl
Get-Recipient (mailbox address) | fl
Get-User (mailbox address) | fl
Get-mailbox -softdeletedmailbox (mailbox address)
Get-mailbox -includeinactivemailbox (mailbox address)
Stop-Transcript
Then restore the Office 365 Admin center.
Recover the Shared Mailbox and check it in the Shared Mailbox
Try to login with the shared mailbox.
Comments
0 comments
Please sign in to leave a comment.