email address policy enabled parameter
when we type get-emailaddresspolicy "name" it returns the policy which has parameter "Enabled" it is either true or false. what does it mean? because i didn't find any command to toggle
May 15th, 2015 7:28pm

Hi 

You can use below

Get-Mailbox | Set-Mailbox -EmailAddressPolicyEnabled $False

Get-Mailbox | Set-Mailbox -EmailAddressPolicyEnabled $True
If you instead prefer to do this per mailbox server, you would use:

Get-Mailbox Server Mailbox Server | Set-Mailbox -EmailAddressPolicyEnabled $False
Get-Mailbox Server Mailbox Server | Set-Mailbox -EmailAddressPolicyEnabled $True
Or perhaps you want to do so for users in a specific OU:

Get-Mailbox OrganizationalUnit Name of OU | Set-Mailbox -EmailAddressPolicyEnabled $False 

Get-Mailbox OrganizationalUnit Name of OU | Set-Mailbox -EmailAddressPolicyEnabled $True

Free Windows Admin Tool Kit Click here and download it now
May 17th, 2015 5:19am

Thanks Sathish, but i am talking about get-emailaddresspolicy and it returns one of the parameter "Enabled" true/false
May 17th, 2015 1:35pm

Hi ,

If possible please share us with the snap for which parameter you are referring a

Free Windows Admin Tool Kit Click here and download it now
May 18th, 2015 1:42am

Hi SMFabe,

Thank you for your question.

I know what you said. Some value will be work by our setting.

For example, there is a parameter which is RecipientFilterApplied, if value is true, it means we have enabled recipient filter function on this policy. After we enable recipient filter by the following link, it will change into true:

https://technet.microsoft.com/en-us/library/bb232194(v=exchg.150).aspx

We could know its mean by parameter name. if there are parameters you could not understand, please be free to let me know, I will explain for you.

If there are any questions regarding this issue, please be free to let me know.

Best Regard,

Jim

May 18th, 2015 5:10am

if you type get-emailaddresspolicy | ft name, enabled. it returns

Name of policy

Enabled=True/False. (I don't find much information about what is this true and false and how can it be toggle)

Free Windows Admin Tool Kit Click here and download it now
May 19th, 2015 11:07am

Hi 

By my testing, the parameter has been remove in Exchange 2013, when we run the following command, we didnt find the parameter, it is by design.

Get-EmailAddressPolicy | FL

If there are any questions regarding this issue, please be free to let me know.

Best Regard,

Jim

May 20th, 2015 3:07am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics