Applies to: Exchange Server 2016
Topic Last Modified: 2017-05-05
Learn how to configure the deleted item retention period for a mailbox or mailbox database in Exchange 2016.
When a user deletes items from the Deleted Items default folder by using the Delete, Shift+Delete, or Empty Deleted Items Folder actions, the items are moved to the Recoverable Items\Deletions folder. The duration that deleted items remain in this folder is based on the deleted item retention settings configured for the mailbox database or the mailbox. By default, a mailbox database is configured to retain deleted items for 14 days, and the recoverable items warning quota and recoverable items quota are set to 20 gigabytes (GB) and 30 GB respectively.
|
|
Before the retention time for deleted items elapses,Outlook and Outlook on the web users can recover deleted items by using the Recover Deleted Items feature. To learn more about these features, see the "Recover deleted items" topic for Outlook 2013 and Outlook 2016 or Outlook on the web.
|
You can use the Exchange Management Shell to configure deleted item retention settings and recoverable items quotas for a mailbox or mailbox database. Deleted item retention settings are ignored when a mailbox is placed on In-Place Hold or litigation hold.
What do you need to know before you begin?
Configure deleted item retention for a mailbox
Use the Exchange admin center (EAC) to configure deleted item retention for a mailbox
-
Navigate to Recipients > Mailboxes.
-
In the list view, select a mailbox, and then click Edit
-
-
On the mailbox property page, click Mailbox usage, click More options, and then select one of the following:
-
Use the default retention settings from the mailbox database Use the deleted item retention setting that’s configured for the mailbox database.
-
Customize the settings for this mailbox Configure deleted item retention settings for the mailbox.
*Keep deleted items for (days) Displays the length of time that deleted items are retained before they’re permanently deleted and can’t be recovered by the user. When the mailbox is created, this value is based on the deleted item retention settings configured for the mailbox database. By default, a mailbox database is configured to retain deleted items for 14 days. The value range for this property is from 0 through 24,855 days.
Use the Exchange Management Shell to configure deleted item retention for a mailbox
This example configures April Stewart's mailbox to retain deleted items for 30 days.
Set-Mailbox -Identity - "April Stewart" -RetainDeletedItemsFor 30
For detailed syntax and parameter information, see Set-Mailbox.
Use the Exchange Management Shell to configure recoverable items quotas for a mailbox
|
You can't use the EAC to configure recoverable items quotas for a mailbox.
|
This example configures a recoverable items warning quota of 12 GB and a recoverable items quota of 15 GB for April Stewart's mailbox.
Set-Mailbox -Identity "April Stewart" -RecoverableItemsWarningQuota 12GB -RecoverableItemsQuota 15GB -UseDatabaseQuotaDefaults $false
|
To configure a mailbox to use different recoverable items quotas than the mailbox database in which it resides, you must set the UseDatabaseQuotaDefaults parameter to $false.
|
For detailed syntax and parameter information, see Set-Mailbox.
Use the Exchange Management Shell to configure deleted item retention for a mailbox database
|
You can't use the EAC to configure deleted item retention for a mailbox database.
|
This example configures a deleted item retention period of 10 days for the mailbox database MDB2.
Set-MailboxDatabase -Identity MDB2 -DeletedItemRetention 10
Use the Exchange Management Shell to configure recoverable items quotas for a mailbox database
|
You can't use the EAC to configure recoverable items quotas for a mailbox database
|
This example configures a recoverable items warning quota of 15 GB and a recoverable items quota of 20 GB on mailbox database MDB2.
Set-MailboxDatabase -Identity MDB2 -RecoverableItemsWarningQuota 15GB -RecoverableItemsQuota 20GB