use cmdlet to list user mailbox not being accessed for more than 3 months in exchange 2007
Hi, there any suggestiojn on how to use cmdlet to list user mailbox not being accessed for more than 3 months in exchange 2007?
October 16th, 2012 7:59pm

Hi, You may want to check out this site and try this example using 90 days. get-mailbox -resultsize unlimited |Get-MailboxStatistics -resultsize unlimited | where {$_.LastLogonTime -lt (get-date).AddDays(-90)} | ft displayName,lastlogontime,lastloggedonuseraccount,servername http://marckean.wordpress.com/2009/04/23/exchange-2007-powershell-commands/ Sean Massey | Consultant, iUNITE Feel free to contact me through My Blog, Twitter or Hire Me. Please click the Mark as Answer or Vote As Helpful button if a post solves your problem or is helpful!
Free Windows Admin Tool Kit Click here and download it now
October 16th, 2012 8:15pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics