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
Hi ,
If possible please share us with the snap for which parameter you are referring a
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
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)
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