标签:时间 sof doc star microsoft ack 邮件服务 分解 ilb
命令分解:1、获取组织内的所有邮件服务器
$Servers = Get-ExchangeServer
2、获取 HUB 服务器
$Servers | where {$_.isHubTransportServer -eq $true -or $_.isMailboxServer -eq $true}
3、查询指定时间 master 到zhaodongwei 发送成功的邮件
Get-MessageTrackingLog -Sender master@contoso.com -Start "2018-8-28 6:40:00" -Recipients zhaodongwei@contoso.com -EventId "DELIVER"
$Servers = Get-ExchangeServer; $Servers | where {$_.isHubTransportServer -eq $true -or $_.isMailboxServer -eq $true} | Get-MessageTrackingLog -Sender master@contoso.com -Start "2018-8-28 6:40:00" -Recipients zhaodongwei@contoso.com -EventId "DELIVER"
参考文档:
https://docs.microsoft.com/zh-cn/exchange/mail-flow/transport-logs/search-message-tracking-logs
标签:时间 sof doc star microsoft ack 邮件服务 分解 ilb
原文地址:http://blog.51cto.com/zhaodongwei/2169349