这里是一个快速和肮脏 Exchange 2007 命令-让程序将输出所有传出电子邮件未传递。它会检查邮件状态 (不”活动) 和消息重试次数 (GT 0),然后将结果输出。
PowerShell
Get-Message -Server SERVER01 -IncludeRecipientInfo | Where{$_.RetryCount -gt 0} | Where{$_.Status -ne “Active”} | SELECT FromAddress, Recipients, LastError | Format-Table
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:1158 次
还没有评论