我有从 ExchangeOnline 获取入站和出站计数的脚本。
问题是我从 O365 管理中心得到的结果与我从 powershell 得到的结果不同。
我想知道我的脚本是否有问题,或者如果我使用脚本,是否有一些脚本不计算在内,或者我应该将 MailTrafficTopReport 更改为其他内容吗?
Connect-ExchangeOnline -UserPrincipalName "User" -DelegatedOrganization "".onmicrosoft.com`
$end = Get-Date -Format MM/dd/yyyy
$start= $(Get-Date).addMonths(-1).ToString("MM/dd/yyyy")
Get-MailTrafficTopReport -Domain "domain.com" -StartDate $start -EndDate $end -PageSize 5000
| Select-Object name, MessageCount, Direction, Date | Where name -EQ "email@email.com"
| Export-csv -NoTypeInformation C:\Scripts\MailReports\reports.csv