At firm we have a situation where we need to copy emails prior to a particular date to PST file and upload to our 3rd party archiving vendor.
Example: First email was sent in 2006. We started archiving emails to a 3rd party vendor starting 2011. Is there a way to export emails prior to 2011 to a PST file? Also the emails should not be deleted from user's mailbox, they will delete it manually.
New-MailboxExportRequest -Mailbox Tony -ContentFilter (Received -lt "01/01/2011")Does the above command delete the emails at source or just copies?