Quantcast
Channel: Exchange 2013 – Christopher Dargel's Exchange and Windows Blog
Viewing all articles
Browse latest Browse all 11

Apply PersonalTags to CustomFolders – Exchange 2013

$
0
0

Hi folks,

with Exchange 2013 ManagedFolders are no longer supported. This feature has been replaced by RetentionTags and RetentionPolicies.
The central management of custom folders is made more diffcult. The local user can apply the RetentionPolicies manual. A workarround for centralized management is the use of Exchange Web Services.

$getRTResp=$service.GetUserRetentionPolicyTags();
foreach ($rtTagin$getRTResp.RetentionPolicyTags) {
if ($rtTag.DisplayName-eq”1 Month Delete”)
{
$NewFolder=new-objectMicrosoft.Exchange.WebServices.Data.Folder($service)
$NewFolder.DisplayName=”My New Folder12345″
$NewFolder.FolderClass=”IPF.Note”
$NewFolder.PolicyTag=New-Object
Microsoft.Exchange.WebServices.Data.PolicyTag($true,$rtTag.RetentionId)
$NewFolder.Save($folderid)
}
}

This is an example how to create a new folder and set the RetentionPolicyTag on that folder to a UserRetentionPolicyTag called “1 Month Delete”.

(Source: MSDN Blog)

Cheers,

Chris


Viewing all articles
Browse latest Browse all 11

Latest Images

Trending Articles





Latest Images