How to recover deleted emails from Exchange Online?
+
To find and recover deleted emails in Microsoft Outlook, follow the steps.
- Login to the Outlook web application and go to the Deleted Items folder.
- Locate the email you wish to restore, right-click on the message, and select the Restore option to restore it.
Note: If you have already deleted the message from this folder or if you have used Shift + Delete for a direct soft delete or if any retention policy has configured soft deletion, the email will be moved to the Recoverable Items.
To restore the soft deleted emails from the Recoverable Items in Outlook, do the following steps.
- Choose the Recover items deleted from this folder option from the top of the deleted items folder.
- Find and right-click the particular message, then select the Restore option to restore the message.
If the emails are hard deleted (deleted from Recoverable Items in Outlook), they are moved to the Purges folder, which is not visible to users. Admins can recover permanently deleted emails in Outlook 365 if the single item recovery is enabled for that mailbox.
As an admin, you possess the capability to recover the hard deleted emails in Office 365 using Exchange admin center.
- Under the Recipients tab, select the Mailboxes section in the Exchange admin center.
- From the list of mailboxes, find and click on the mailbox from which you want to recover deleted items.
- Go to the Others tab and choose the Recover deleted items option.
- Select the respective mails and click the Recover deleted items button.
Note: This action requires the admin to have the Mailbox Import Export permission. If you don’t have it, use the Exchange admin center to create role groups with the Mailbox Import Export permission.
- To check whether the single item recovery is enabled or not, use the following command.
Get-Mailbox -Identity <Mailbox UPN> | Select SingleItemRecoveryEnabled
- If the execution retrieves true, then single item recovery is enabled for the specified mailbox; if it retrieves false, single item recovery is disabled.
- If single item recovery is disabled, you can enable it using the following command to recover any future hard deletions.
Set-Mailbox -Identity <Mailbox UPN> -SingleItemRecoveryEnabled $true