命令分解:
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
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。