1

How would one insert an array full of smtp email addresses into an AD Group. I've tried this:

Set-QADGroup $_ -ObjectAttributes @{proxyAddresses = $email_smtp_array}

But this does not work.

4

1 回答 1

0

试试这样:

Set-QADGroup $_ -ObjectAttributes @{proxyAddresses = $($email_smtp_array)}

如果设置为根据交换配置更新地址,此命令不会覆盖 Exchange 策略。

于 2012-06-26T13:17:18.647 回答