Microsoft文档给出的Set-MalwareFilterPolicy示例失败

时间:2019-12-11 08:03:02

标签: powershell exchange-server-2016 exchange-management-shell

我正在尝试向Exchange Server 2019恶意软件策略添加文件类型。为此,我遵循https://docs.microsoft.com/en-us/powershell/module/exchange/antispam-antimalware/set-malwarefilterpolicy?view=exchange-ps

上显示的Microsoft文档

示例2正是我所需要的:

$FileTypesAdd = Get-MalwareFilterPolicy -Identity Default | select -Expand FileTypes; $FileTypesAdd += "com","bat"; Set-MalwareFilterPolicy -Identity Default -EnableFileFilter $true -FileTypes $FileTypesAdd

不幸的是,当我在Exchange命令行管理程序中执行该示例时,收到以下错误消息:

  

找不到与参数名称“ EnableFileFilter”匹配的参数。       + CategoryInfo:InvalidArgument:(:) [Set-MalwareFilterPolicy],ParameterBindingException       + FullyQualifiedErrorId:NamedParameterNotFound,Set-MalwareFilterPolicy       + PSComputerName:exchange.bndt.local

我在本地Windows Server 2016上运行Exchange Server 2016(CU14)(完全最新)。 我不太清楚这是怎么回事。

任何帮助表示赞赏。

致谢

0 个答案:

没有答案