Share via

Emails disappeared from in box.

Donna Fruge 0 Reputation points
2026-03-09T19:04:07.94+00:00

All emails disappeared from in box in Microsoft Exchange. Can not locate them in any other folder and when I try to restore from deleted folder, they are not there either. Please help.

Exchange | Exchange Server | Management
Exchange | Exchange Server | Management

The administration and maintenance of Microsoft Exchange Server to ensure secure, reliable, and efficient email and collaboration services across an organization.

0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. TiNo-T 11,770 Reputation points Microsoft External Staff Moderator
    2026-03-09T23:18:12.3033333+00:00

    Dear @Donna Fruge,

    Welcome to Microsoft Q&A Forum!

    Thank you for reaching out, and I truly understand how stressful and concerning it can be to suddenly find your Inbox empty, especially when those emails may be important for your work. I’m sorry you’re experiencing this, and I’d like to clarify what may have happened and what options that you can consider trying them next.

    First of all, please note that this is a peer‑to‑peer support forum. Microsoft Q&A moderators like myself, as well as other community members, share guidance based on personal experience and publicly available information. Due to security and privacy protocols, we do not have access to your internal environment and are unable to check or verify it directly on your behalf. Our role is to help guide the discussion and connect you with relevant and helpful resources. I truly appreciate your patience and understanding in this situation.

    Based on how Exchange Server (on‑premises) works, when emails disappear from the Inbox and are not found in Deleted Items or “Recover Deleted Items,” this may indicate that the messages were removed at the server level, rather than simply hidden or filtered in Outlook. Here are several common scenarios:

    1.Server‑side deletion or automated cleanup:

    Emails may have been deleted by an automated process such as a mailbox retention policy or another server‑side action. In these cases, the messages do not always remain visible to end users in Deleted Items.

    2.Recoverable Items limitations in Exchange Server:

    In Exchange Server, advanced recovery features such as Single Item Recovery are disabled by default unless they were enabled before the deletion occurred. If this feature was not enabled in advance, permanently deleted emails cannot be restored by the user.

    3.Client vs. server confirmation:

    To rule out an Outlook‑only display or cache issue, I recommend confirming the mailbox content directly on the server by signing in through Outlook on the web (OWA) at outlook.office.com. If the emails are also missing in OWA, this may confirm that the items may be no longer present in the mailbox itself.

    Therefore, I have several suggestions that you can try to see if they can improve it:

    • Please sign in to Outlook on the web (OWA) and check whether the emails appear there.
    • If the emails are still missing, your Exchange administrator will need to review:
      • Whether Single Item Recovery or retention settings were enabled
      • Whether recovery is still possible within the mailbox retention window
    • If retention has expired and no Exchange backup exists, Microsoft unfortunately does not support restoring those emails.

    For your reference, Microsoft documents the supported recovery process for Exchange Server here: Recover deleted messages in a user’s mailbox in Exchange Server

    Additionally, in my perspective view, this issue may need an advanced checking with Microsoft Support team via https://serviceshub.microsoft.com/supportforbusiness. This will allow our dedicated support engineers who have broader diagnostic tools and permissions to investigate and assist you more effectively (this is a paid support ticket). 

    I know this may not be the outcome you were hoping for, and I sincerely empathize with how disruptive this situation can be. Please rest assured that reviewing the steps above is the best way to determine whether recovery is still possible.

    I hope this information can give you some insights and please let me know how things go on your side as your update can also assist others in the community who may be facing the same issue.


    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

  2. Q&A Assist
    2026-03-09T19:04:22.32+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    In Exchange Server, if messages disappeared from the Inbox and are not visible in other folders or the Deleted Items folder, they may still be recoverable by an administrator as long as the deleted item retention period has not expired and (ideally) single item recovery is enabled.

    Below is an admin-side recovery approach for a single mailbox using Exchange Management Shell (Exchange 2013 context):

    1. Prerequisites and checks
      • Ensure the account used has the required permissions for In-Place eDiscovery/Search-Mailbox as described in the Messaging policy and compliance permissions.
      • Confirm that the mailbox is within the deleted item retention window. By default, a mailbox database retains deleted items for 14 days in Exchange 2013.
      • If possible, verify that single item recovery is enabled for the mailbox. If it was not enabled before deletion, recovery options are more limited.
    2. Search the mailbox for missing items and copy them to a discovery mailbox
      • Use Search-Mailbox to search the user’s mailbox and copy matching items to a discovery mailbox. For example, to search the entire mailbox for all items that might match a keyword or sender:
         Search-Mailbox "User Display Name" \
           -SearchQuery "from:'someone@example.com' OR subject:'keyword'" \
           -TargetMailbox "Discovery Search Mailbox" \
           -TargetFolder "User Recovery" \
           -LogLevel Full
      
      • To focus only on items that are in the Recoverable Items (dumpster), add -SearchDumpsterOnly:
         Search-Mailbox "User Display Name" \
           -SearchQuery "subject:'keyword'" \
           -SearchDumpsterOnly \
           -TargetMailbox "Discovery Search Mailbox" \
           -TargetFolder "User Recovery" \
           -LogLevel Full
      
      • After the command completes, log on to the discovery mailbox and review the contents of the specified target folder (for example, “User Recovery”) to confirm the missing messages are present.
    3. Restore recovered items back to the user’s mailbox
      • Once the messages are in the discovery mailbox, use Search-Mailbox again to move them into the user’s mailbox. For example:
         Search-Mailbox "Discovery Search Mailbox" \
           -SearchQuery "subject:'keyword'" \
           -TargetMailbox "User Display Name" \
           -TargetFolder "Recovered Messages" \
           -LogLevel Full
      
      • If desired, add -DeleteContent to remove the items from the discovery mailbox after they are copied back:
         Search-Mailbox "Discovery Search Mailbox" \
           -SearchQuery "subject:'keyword'" \
           -TargetMailbox "User Display Name" \
           -TargetFolder "Recovered Messages" \
           -LogLevel Full \
           -DeleteContent
      
      • Ask the user to check the “Recovered Messages” folder in their mailbox to verify that the emails have been restored.
    4. Alternative: export to PST and re-import
      • Instead of restoring directly, it is possible to export recovered items from the discovery mailbox to a .pst file and then import them into the user’s mailbox.
      Export from discovery mailbox to PST (example):
         New-MailboxExportRequest \
           -Mailbox "Discovery Search Mailbox" \
           -SourceRootFolder "User Recovery" \
           -ContentFilter "Subject -eq 'keyword'" \
           -FilePath \\ServerName\Share\UserRecovery.pst
      
      • After verifying the PST contents in Outlook, import into the user’s mailbox:
         New-MailboxImportRequest \
           -Mailbox "User Display Name" \
           -TargetRootFolder "Recovered By Helpdesk" \
           -FilePath \\ServerName\Share\UserRecovery.pst
      
      • Have the user review the “Recovered By Helpdesk” folder.
    5. Additional considerations
      • Recovery is only possible if the deleted item retention period for those items has not expired.
      • If many mailboxes are affected or the scope is unclear, In-Place eDiscovery in the EAC or New-MailboxSearch can be used to search multiple mailboxes and export results to a PST.

    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.