我正在寻找一种方法来通过 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"
是否有可能通过powershell/emc设置office 365 用户“外出”消息?
根据我的研究,我发现作为交换混合环境命令发生了变化,例如new-mailbox
变成new-remotemailbox
。同样明智的是Set-MailboxAutoReplyConfiguration
,office 365 中的命令是什么?
我只能找到以下兼容的命令。
您可以连接到 Exchange 在线 powershell并为 O365 用户运行“Set-MailboxAutoReplyConfiguration”cmdlet。