Exchange Server 2013下设置消息通知邮件

在Exchange Server 2013 EAC中,当有如证书快要过期等问题时,登录EAC会自动有消息提示证书将要过期,针对此处的消息,可以通过PowerShell设置将该消息以邮件的方式发给指定的收件人,以达到通知和告警的目的,命令如下:

Set-Notification -NotificationEmails john@contoso.com,kweku@contoso.com -ProcessType CertExpiry

对于ProcessType的类型,支持如下参数:

-ProcessType <Unknown | ImportPST | ExportPST | Migration | MailboxRestore | CertExpiry>
ProcessType 参数指定触发电子邮件发送的进程类型。 此参数接受下列值:
* Unknown
* ImportPST
* ExportPST
* Migration
* MailboxRestore
* CertExpir

分享到