When you’ve read the previous posts in this series about Exchange 2010 archiving, you’ve probably seen the one explaining default folders. In this post, retention policy tags will be attached to default folders. Default folders are folders that are present in Exchange mailboxes by default. Examples are the Inbox, Drafts, Sent Items etcetera.
These Retention Policy Tags are set by administrators on the mentioned default folders and cannot be changed by users. Items in a default folder that has a retention policy tag attached to them inherit the retention policy that is set on the above default folder.
One downside to keep in mind
One big downside on the use of retention policy tags on default folders is that they can’t be used to move items to an archive after a certain period of time. Below you see the handsome error that is presented when you will try to do this. In my opinion, this is a reasonably big downside of using tags on default folders. When put in other words, retention policy tags on default folder can only have “Delete and allow recovery” or “Permanently Delete” as action to the policy.
0. Set up your Exchange environment.
Part 1 in this series on Exchange 2010 SP1 archiving talks about setting up our Exchange environment to make it ready for archiving. It is a prerequisite to follow part 1 first.
1. Configuring retention policy tags on default folders
1a. Using the Exchange Management Console (EMC):
- Start the EMC
- Navigate to Organization Configuration – Mailbox
- Select the retention policy tags tab
- Choose “new retention policy tag” in the actions pane
- Name the retention policy tag
- Choose a default folder as Tag Type, which specifies the use on default folders

- Choose the age limit
- Choose the retention action (Can only be “Delete and allow recovery” or “Permanently Delete”)
- Click new
1b. Using the Exchange Management Shell (EMS):
New-RetentionPolicyTag -Name InboxPolicy -Type Inbox -AgeLimitForRetention 720 -RetentionAction PermanentlyDelete
2. Add the Retention Policy Tags to a Retention Policy
All created Retention Policy Tags are now being grouped in a retention policy. Note that only 1 retention policy can be applied to a mailbox. It’s allowed (mostly also needed) to add Multiple Policy Tags to 1 retention policy!
2a. Using the Exchange Management Console (EMC):
- Start the EMC
- Navigate to Organization Configuration – Mailbox
- Select the retention policies tab
- In the actions pane, click “new retention policy”
- Name the policy and add the in step 2 created policy tags
- Attach the policy to mailboxes
- Click New
2b. Using the Exchange Management Shell (EMS):
New-RetentionPolicy -Name "Techdom.nl Inbox Policy for IT employees" -RetentionPolicyTagLinks "InboxPolicy"
3. Add The Retention Policy to Mailboxes afterward
3a. Using the Exchange Management Console (EMC):
- Start the EMC
- Navigate to Organization Configuration, Mailbox
- Select the Retention Policies tab
- Select the policy and add mailboxes on the mailboxes tab
3b. Using the Exchange Management Shell (EMS):
Attach a policy to all mailboxes:
Get-Mailbox | Set-Mailbox -RetentionPolicy "Techdom.nl Inbox Policy for IT employees"
Attach a policy to selected mailboxes:
Get-Mailbox -Identity "William Adama"| Set-Mailbox -RetentionPolicy "Techdom.nl Inbox Policy for IT employees"
Now we have created a default folder policy. In the next article personal tags for users are setup!
Back to Exchange 2010 Archiving Guide Index.
