Last logon Mailbox
The information we are given using the following command from powershell :
foreach ($i in (get-mailbox)) { get-MailboxStatistics -identity “$i” }
The figure that emerges could be of little significance if the user has set the forwarding rule on another mailbox . To see which users have set the forwarding to another mailbox command is this:
foreach ($i in (get-mailbox)) { get-mailbox -identity “$i” |fl ForwardingSmtpAddress }
foreach ($i in (get-mailbox)) { get-MailboxStatistics -identity “$i” }
The figure that emerges could be of little significance if the user has set the forwarding rule on another mailbox . To see which users have set the forwarding to another mailbox command is this:
foreach ($i in (get-mailbox)) { get-mailbox -identity “$i” |fl ForwardingSmtpAddress }
Commenti
Posta un commento