List mailboxes based on creation date
2012-04-27 2 Comments
Just a quick one liner to list mailboxes based on the date when they where created. In the example below I list all mailboxes created the last week:
Get-Mailbox -resultsize unlimited | where {$_.WhenMailboxCreated -gt (get-date).adddays(-7)} |ft Name,whenMailboxCreated -Autosize
If you want to change the number of days just edit –7 to the number of days matching your preferences.
That’s all, take care and have fun!

Excellent article. Keep posting such kind of information on your page.
Im really impressed by your blog.
Hey there, You have performed a fantastic job. I will definitely digg
it and in my view recommend to my friends.
I’m sure they’ll be benefited from this site.
What if I need a list of mailboxes created during a specific month? For instance, I need a list of boxes created in December of this last year.