Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-11-19
Use the Get-RetentionPolicyTag cmdlet to retrieve settings for a retention tag.
Syntax
Get-RetentionPolicyTag [-Identity
<RetentionPolicyTagIdParameter>] [-DomainController
<Fqdn>] [-IncludeSystemTags <SwitchParameter>]
[-Organization <OrganizationIdParameter>] [-Types
<ElcFolderType[]>]
|
Get-RetentionPolicyTag [-DomainController <Fqdn>]
[-IncludeSystemTags <SwitchParameter>] [-Mailbox
<MailboxIdParameter>] [-OptionalInMailbox
<SwitchParameter>] [-Organization
<OrganizationIdParameter>] [-Types
<ElcFolderType[]>]
|
Detailed Description
Retention tags are used to apply message retention settings to messages or folders. There are three types of retention tags:
- Retention policy tags
- Default policy tags
- Personal tags
Retention policy tags are applied to default folders such as Inbox and Deleted Items. Personal tags are available to users to tag items and folders. The default policy tag is applied to all items that don't have a tag applied by the user or aren't inherited from the folder they're located in. The Get-RetentionPolicyTag cmdlet displays all the settings for the specified tag.
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Messaging records management" entry in the Messaging Policy and Compliance Permissions topic.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory. |
Identity |
Optional |
Microsoft.Exchange.Configuration.Tasks.RetentionPolicyTagIdParameter |
The Identity parameter specifies the name of the tag. |
IncludeSystemTags |
Optional |
System.Management.Automation.SwitchParameter |
The IncludeSystemTags switch specifies whether to return any system tags. |
Mailbox |
Optional |
Microsoft.Exchange.Configuration.Tasks.MailboxIdParameter |
The Mailbox parameter isn't available in this release. |
OptionalInMailbox |
Optional |
System.Management.Automation.SwitchParameter |
The OptionalInMailbox parameter isn't available in this release. |
Organization |
Optional |
Microsoft.Exchange.Configuration.Tasks.OrganizationIdParameter |
This parameter is available for multi-tenant deployments. It isn't available for on-premises deployments. For more information about multi-tenant deployments, see Multi-Tenant Support. The Organization parameter specifies the organization in which you'll perform this action. This parameter doesn't accept wildcard characters, and you must use the exact name of the organization. |
Types |
Optional |
Microsoft.Exchange.Data.Directory.SystemConfiguration.ElcFolderType[] |
The Types parameter specifies the type of retention tag to return. Valid values include:
The parameter accepts multiple values separated by a comma. |
Input Types
To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.
Return Types
To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.
Examples
EXAMPLE 1
This example returns all retention tags.
Copy Code | |
---|---|
Get-RetentionPolicyTag |
EXAMPLE 2
This example returns system tags in addition to personal and default tags.
Copy Code | |
---|---|
Get-RetentionPolicyTag -IncludeSystemTags |
EXAMPLE 3
This example returns the settings for the tag Consolidated Messenger.
Copy Code | |
---|---|
Get-RetentionPolicyTag "Consolidated Messenger" |
EXAMPLE 4
This example returns all retention tags of
Inbox
and All
types and pipes the results
to the Format-Table command to display the Name,
Type, RetentionEnabled, AgeLimitForRetention,
and RetentionAction properties.
Copy Code | |
---|---|
Get-RetentionPolicyTag -Types Inbox,All | Format-Table Name,Type,RetentionEnabled,AgeLimitForRetention,RetentionAction -AutoSize |