I am Dale Hayter, a Microsoft and VMware certified Technical Consultant.

My blog has been built up over the years from my experience of working on an IT helpdesk and also from being out on-site.

Exchange 2010 – Export all mailboxes to PST

If you want to export all mailboxes in Exchange 2010 to PST then you can do this with one command :

foreach ($AllMailboxes in (Get-Mailbox)) { New-MailboxExportRequest -Mailbox $AllMailboxes -FilePath "\\SERVERNAME\SHARENAME\$($AllMailboxes.Alias).pst" }

It will take ages……………..