How to export an Exchange Mailbox using Powershell (Exchange Management Shell)

If you want to export an Exchange mailbox to PST with some variables included, then this guide should help you out. In Exchange Management Shell, you can run the following command to export a mailbox to PST with variables like delete all mail from mailbox after export or maybe excluding Contacts or Calendar. The command […]

How To Export An Exchange Mailbox Using Powershell Exchange
If you want to export an Exchange mailbox to PST with some variables included, then this guide should help you out. In Exchange Management Shell, you can run the following command to export a mailbox to PST with variables like delete all mail from mailbox after export or maybe excluding Contacts or Calendar. The command you should use is this:
Export-Mailbox –Identity “alias” -PSTFolderPath C:MAILARCHIVES -EndDate “01/01/2015” -ExcludeFolders “Contacts”,”Drafts”,”Notes”,”Calendar”,”Tasks” -DeleteContent
The explaination of this command is as below:
  • Export-Mailbox – this is the powershell command to export the mailbox
  • -Identity “alias” – this is the “alias” of the Exchange Mailbox you want to export
  • -PSTFolderPath C:MAILARCHIVES – this is the location your PST will be exported to
  • -EndDate “01/01/2015” – when you want to export up to
  • -ExcludeFolders – The items you may want to exclude from export – remove or add where applicable
    • “Contacts”,”Drafts”,”Notes”,”Calendar”,”Tasks”
  • -DeleteContent – Deletes the mailbox items after export
That is it, create your custom command for your requirements and run it in EMS.

Feedback

If you have any questions or comments on this guide, please feel free to leave us a message below.
🛠️

Gear We Recommend

Testing configs is easier with a dedicated admin machine set up right. Here’s the kit we use.

Browse our Windows Admin Toolkit picks on Amazon

As an Amazon Associate, TechyGeeksHome earns from qualifying purchases.


Discover more from TechyGeeksHome

Subscribe to get the latest posts sent to your email.

Andrew Armstrong

Andrew Armstrong is a UK-based IT professional with 26+ years of hands-on experience in Windows, Windows Server, SCCM/ConfigMgr, Active Directory, PowerShell, and enterprise infrastructure.

He founded TechyGeeksHome in 2010 and has published over 1,500 practical guides covering real-world IT problems and solutions. When not solving IT problems,

Andrew develops free Windows utilities including Ultimate Settings Panel, which has been downloaded over 850,000 times.