top of page

The "Recoverable Items" Folder in Microsoft Exchange


The evolution of the Recoverable Items folder in Exchange 2010 showcases Microsoft's commitment to enhancing legal compliance, data retention, and eDiscovery capabilities,


What is the "Recoverable Items" Folder?

The "Recoverable Items" folder is a hidden folder within the user's mailbox in Microsoft Exchange. It contains several subfolders, each serving a distinct purpose related to email retention, recoverability, and compliance.


Architectural Changes:

  • Location: Nested within the non-IPM subtree of each mailbox.

  • Visibility: Not directly accessible via Outlook or Outlook Web App.


Benefits:

  • Portability: Moves with the mailbox across databases.

  • Indexing: Indexed for efficient In-Place eDiscovery.

  • Retention: Owns a separate storage quota to prevent purging.


Extended Retention:

  • Deleted Objects: Holds all deleted items, including emails and calendar events. Retention Periods:

  • Deleted Mailboxes: 30 days.

  • Soft Deletes: 14 days.

  • Hard Deletes: Generally unrecoverable in Exchange.


Structure of the "Recoverable Items" Folder:

  • Deletions Subfolder: Stores soft-deleted items. Moves to "Purges" after 14 days.

  • Discovery Hold Folder: Houses items under legal holds.

  • Versions Folder: Maintains snapshots of modified items.


Auditing and Logging:

  • Mailbox Auditing: Tracks mailbox activities (off by default).

  • Administrator Auditing: Retains 90 days of admin activity logs.

  • Message Tracing: Captures message metadata for 90 days; extended data available in CSV format.


Tools for Accessing and Analyzing "Recoverable Items"

  • Exchange Admin Center (EAC): Administrators can access and manage the "Recoverable Items" folder via the EAC.

  • PowerShell Commands: Exchange Management Shell provides cmdlets to manage and extract data from the "Recoverable Items" folder for forensic analysis.

  • Forensic Suites: Tools like X-Ways, EnCase, and FTK can also be used to extract and analyze data from the "Recoverable Items" folder, especially useful for deeper forensic investigations.


 Below are some commonly used PowerShell commands to work with the "Recoverable Items" folder:

1. Get-MailboxFolderStatistics

Statistics for all folders within a specified mailbox, including the "Recoverable Items" folder.

Get-MailboxFolderStatistics -Identity <MailboxIdentity> | Where-Object {$_.FolderPath -like '*Recoverable Items*'}

2. Search-Mailbox

Searches for items within a mailbox that match specified search criteria, including items in the "Recoverable Items" folder.

Search-Mailbox -Identity <MailboxIdentity> -SearchQuery 'folderpath:"Recoverable Items"'

3. New-MailboxSearch

Creates a new search query and places the search results into a discovery mailbox.

New-MailboxSearch -Name "RecoverableItemsSearch" -SourceMailboxes <MailboxIdentity> -SearchQuery 'folderpath:"Recoverable Items"'

4. Get-RecoverableItems

Retrieves the items from the "Recoverable Items" folder for a specified mailbox.

Get-RecoverableItems -Identity <MailboxIdentity>

5. Restore-RecoverableItems

Restores items from the "Recoverable Items" folder back to the primary mailbox or to another mailbox.

Restore-RecoverableItems -Identity <MailboxIdentity> -FilterItemType IPM.Note


Notes:

  • Replace <MailboxIdentity> with the actual mailbox identity or email address.

  • Ensure you have the necessary permissions to execute these cmdlets, typically requiring Exchange Admin or Compliance Management roles.


Conclusion:

The evolution of the Recoverable Items folder in Exchange has significantly enhanced its capabilities in legal compliance, data retention, and eDiscovery. By introducing features like extended retention periods, granular tracking, and enhanced auditing, Microsoft has provided organizations with robust tools to meet their legal and compliance requirements effectively.


Akash Patel



37 views0 comments

Comments


bottom of page