Powershell Exchange Module远程邮箱问题

时间:2015-05-16 21:04:58

标签: powershell azure active-directory exchange-server office365

我创建了一个脚本,可以自动在Exchange中创建用户,而不是从o365添加许可证,但我需要底部的框,其中显示“根据应用于此收件人的电子邮件地址策略自动更新电子邮件地址“在创建帐户时自动检查。

enter image description here

以下是创建远程信箱的主要组件:

New-RemoteMailBox -Alias $identAlias -Name $name -FirstName $return[0] -LastName $return[1] -UserPrincipalName $eAddress  -Password (ConvertTo-SecureString -String 'xxxxxxx' -AsPlainText -Force) -ResetPasswordOnNextLogon $true 

请帮忙!

1 个答案:

答案 0 :(得分:1)

申请all users

Get-mailbox | Set-mailbox -EmailAddressPolicyEnabled $true

并按域限制

Get-mailbox | Where {$_.EmailAddresses -like ‘*@domain.com’} |
 Set-mailbox -EmailAddressPolicyEnabled $true

远程

Get-mailbox | Where {$_.EmailAddresses -like ‘*@domain.com’} |
Set-RemoteMailbox EmailAddressPolicyEnabled