如何使用 powershell 为混合办公环境设置外出消息?

如何使用 powershell 为混合办公环境设置外出消息?

我正在寻找一种方法来设置“不在办公室”通过 powershell 为处于 office 365/exchange 混合环境中的用户发送消息。我们有一个交换混合环境. (有些用户使用 onpremis exchange,有些用户使用 office 365。)

对于本地用户,我们设置“不在办公室”使用以下 powershell 命令发送消息

Set-MailboxAutoReplyConfiguration -Identity xyz -AutoReplyState Scheduled –StartTime (get-date) -EndTime (get-date).addyears(1) -InternalMessage "Dear,-ExternalMessage "Dear"

但这对 Office 365 用户不起作用。

The operation couldn't be performed because object 'xyz' couldn't be found on 'domaincontroller"

任何可能设置office 365 用户“外出办公室”信息powershell/emc

根据我的研究,我发现交换混合环境命令已更改,例如new-mailbox变为。同样, office 365 中的new-remotemailbox命令是什么?Set-MailboxAutoReplyConfiguration

我只能找到以下兼容的命令。

在此处输入图片描述

答案1

你可以连接到 Exchange online powershell并为 O365 用户运行“Set-MailboxAutoReplyConfiguration”cmdlet。

相关内容