Exchange 2016 - Check mailbox creation date
There may come a time when you have been requested to provide HR or your manager a list of mailboxes and their creation dates.
This is a simple task to do. Let's jump right to it.
Firstly, launch the Exchange Management Shell (EMS) and enter in the following command:
- Get-Mailbox * | Select-Object Name,whenMailboxCreated
https://collaborationpro.com/wp-content/uploads/2017/09/MailboxCreation.png
You will get a list of all mailboxes as we used the * option in the command. You can narrow this down to one user if you need to as follows:
https://collaborationpro.com/wp-content/uploads/2017/09/MailboxCreation4.png
You can also use the "whencreatedUTC" object. Remember that whatever your timezone the time might be different. For example, if we use the command with the "whencreatedUTC" switch it shows 2 hours behind. See below Active Directory properties:
https://collaborationpro.com/wp-content/uploads/2017/09/MailboxCreation1.png
If you double click on the value above you will see the box below with time shown in UTC.
https://collaborationpro.com/wp-content/uploads/2017/09/MailboxCreation2.png
The above should work for Exchange 2010 and 2013.