RequireSenderAuthenticationEnabled通讯组参数

时间:2017-10-25 16:18:51

标签: c# powershell active-directory exchange-server

我在C#应用程序中使用PowerShell创建通讯组。 我想要更改允许外部用户向该组发送邮件的参数。

在technet上我发现https://technet.microsoft.com/fr-fr/library/aa998856(v=exchg.160).aspx 我尝试在PowerShell命令中添加一个参数。为了在我的应用程序中执行PowerShell,我使用的方式:

ps.Commands = new PSCommand().AddCommand("New-DistributionGroup").AddParameter("Name", "GRP_DIF_" + textBox1.Text);
ps.Invoke();

此代码成功创建了一个通讯组,但是当我想更改参数

  

RequireSenderAuthenticationEnabled

使用

[...].AddParameter("RequireSenderAuthenticationEnabled", "$false")

我有一个

  

未知参数:RequireSenderAuthenticationEnabled

是否有更改此参数的特殊方法?

0 个答案:

没有答案