远程设置用户邮箱的 Outlook 规则

远程设置用户邮箱的 Outlook 规则

我想使用 PowerShell 远程配置 Outlook 规则,将会议邀请和更新转发给另一个用户。

步骤 1) Connect-ExchangeOnline -UserPrincipalName

步骤 2) 设置收件箱规则[电子邮件保护]\ForwardTo - 是会议、邀请或更新 -ForwardTo[电子邮件保护]

问题是我找不到参数“哪个是会议或更新”。

答案1

我认为你想要做的是使用MessageTypeMatches

New-InboxRule -Mailbox '[email protected]' -Name 'FWD Meeting updates' -MessageTypeMatches CalendaringResponse -ForwardTo "[email protected]" -StopProcessingRules:$true

相关内容