Get-MailboxStatistics -server "EXMBA" | Sort-Object TotalItemSize -Descending | ft DisplayName,@{label="TotalItemSize(MB)";expression={$_.TotalItemSize.Value.ToMB()}},ItemCount
这条命令修改输入后,还是只出了部分邮箱出来,而且还没有用户的 LastLogonTime 信息
后面的命令就不行了,换了server也是一样。
[PS] C:\Windows\system32>Get-MailboxStatistics -Database “EXMBA” | Select DisplayName, LastLoggedOnUserAccount, ItemCo
unt, TotalItemSize, LastLogonTime, LastLogoffTime | Export-CSV test.csv
Export-Csv : 对路径“C:\Windows\system32\test.csv”的访问被拒绝。
所在位置 行:1 字符: 156
+ Get-MailboxStatistics -Database “EXMBA” | Select DisplayName, LastLoggedOnUserAccount, ItemCount, TotalItemSize, La
stLogonTime, LastLogoffTime | Export-CSV <<<< test.csv
+ CategoryInfo : OpenError: (:) [Export-Csv], UnauthorizedAccessException
+ FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.ExportCsvCommand
[PS] C:\Windows\system32>Get-MailboxStatistics -Server “EXMBA” | Select DisplayName, LastLoggedOnUserAccount, ItemCoun
t, TotalItemSize, LastLogonTime, LastLogoffTime | Export-CSV test.csv
Export-Csv : 对路径“C:\Windows\system32\test.csv”的访问被拒绝。
所在位置 行:1 字符: 154
+ Get-MailboxStatistics -Server “EXMBA” | Select DisplayName, LastLoggedOnUserAccount, ItemCount, TotalItemSize, Last
LogonTime, LastLogoffTime | Export-CSV <<<< test.csv
+ CategoryInfo : OpenError: (:) [Export-Csv], UnauthorizedAccessException
+ FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.ExportCsvCommand
[PS] C:\Windows\system32>