The specified e-mail address policy couldn’t be edited. E-mail address policies created legacy versions of Exchange must be upgraded using the ‘Set-EmailAddressPolicy’ task, with the Exchange 2010 Recipient Filter specified.
Use below command to get all email address policies.
Get-EmailAddressPolicy | where {$_.RecipientFilterType –eq “Legacy”}
Use below command to convert legacy Email address policies to Exchange Server 2010 Email address policies.
Get-EmailAddressPolicy | where {$_.RecipientFilterType –eq “Legacy”} | Set-EmailAddressPolicy –IncludedRecipients AllRecipients
The Recipient Policies are now converted to Exchange Server 2010 Email Address Policies and you can open them in the Exchange Management Console.
Leave a Reply