有没有办法从外部打开 MS Outlook 上的“外出”功能?我正在寻找类似 .ICS 文件,当用户执行它时,它会添加日历项目。
作为 Exchange 管理员,您可以在 PowerShell 中进行如下设置:
$username = "[email protected]"
$starttime = "MM/DD/YYYY HH:MM:SS"
$endtime = "MM/DD/YYYY HH:MM:SS"
$msg_internal = "Internal out of office message"
$msg_external = "External out of office message"
# Enable automatic replies
Set-MailboxAutoReplyConfiguration -identity $username -AutoReplyState Scheduled -StartTime $starttime -EndTime $endtime -InternalMessage $msg_internal -ExternalMessage $msg_external
不幸的是,无法直接使用 .ics 文件在 MS Outlook 中设置外出 (OOO) 消息。您可以在日历中创建您外出期间的活动,然后手动打开 Outlook 中的自动回复功能。