生成上次登录报告 Exchange 服务器 powshell

生成上次登录报告 Exchange 服务器 powshell

在 shell 中使用此命令get-MailboxStatistics -Server servername | Select-Object DisplayName | Sort LastLogonTime -Descending | Export-csv c:\export.csv

我能够生成带有显示名称的上次登录的完整报告。

但是我还需要一个显示最后访问该邮箱的用户的列,因为我们有一些与许多用户共享的邮箱,这可能吗?

答案1

您只需在 DisplayName 后添加“,LastLoggedonUserAccount”即可。

get-MailboxStatistics -Server servername  | Select-Object DisplayName,LastLoggedOnUserAccount | Sort LastLogonTime -Descending  | Export-csv c:\export.csv

相关内容