> ## Content Index
> Fetch the complete content index at: https://jasontucker.blog/llms.txt
> Use this file to discover other available public pages before exploring further.

# List most recent Exchange users using PowerShell
- URL: https://jasontucker.blog/list-most-recent-exchange-users-using-powershell/
- Published: 2015-10-21T08:33:12.000Z
- Updated: 2015-10-21T08:35:49.000Z
- Author: Jason Tucker
- Tags: #wordpress

At work we’re migrating our exchange server’s users over to Google. As with more businesses we add new users to our exchange server throughout the year; be it interns, paid and volunteers. I wanted to get a list of new users we have added to our exchange server in the last 90 days so I did some google searching and found this post [Exchange Quick Audit: mailboxes created in last 7 days](http://exchangepedia.com/2008/06/exchange-quick-audit-mailboxes-created-in-last-7-days.html?ref=jasontucker.blog) that worked for my needs.

Here is the code I used:

Get-User -resultsize unlimited | where {$_.WhenCreated -gt (get-date).adddays(-90)} | ft Name,whenCreated -Autosize

You end up with 2 columns: Name, WhenCreated. This allowed be to change the 90 to the number that I needed to update my reference files for Google Migration for Microsoft Exchange so I could include the new email addresses in the list.