Revision #1

You are currently reviewing an older revision of this page.
Go to current version

Its easy to Export a Mailbox to PST using Mailbox Export Request in Exchange 2010

Lets see on how to Export 1 single mailbox to PST in Exchange 2010

 

To Acquire RBAC Permission

Add “Mailbox Import Export” RoleAssignment to the Admin ,

 

New-Managementroleassignment –Role “Mailbox Import Export” –User “Administrator”

 

Now Create a Folder , Share it

image

Now Run

New-MailboxExportRequest –Mailbox “MailboxName” -FilePath \\ServerName\PST\MailboxName.pst

New-MailboxExportRequest

 

How to Export All the Mailboxes to PST

Step 1:

Open Exchange Management Shell

$Export = Get-Mailbox

(Saving to a Variable)

 

Step 2:

 

$Export|%{$_|New-MailboxExportRequest -FilePath "file://servername/pst/$($_.alias).pst"}

 

 

image

How to Export PST of List of Users from a txt file

Step 1:

Open Exchange Management Shell

$Export = Get-Content .\Mailbox.txt

(Saving to a Variable)

Step 2:

$Export|%{$_|New-MailboxExportRequest -FilePath "file://servername/pst/$($_.alias).pst"}

 


How to Export All the Mailboxes using a Specified date

Step 1:

Open Exchange Management Shell

$Export = Get-Mailbox

(Saving to a Variable)

 

 

Step 2:

 

Specifying lesser than (lt) 01-01-2012

$Export|%{$_|New-MailboxExportRequest -ContentFilter {(Received -lt "01/01-2012")} -FilePath file://servername/pst/$($_.alias).pst}

 

How to Export All the Mailboxes with Specific folders

Step 1:

Open Exchange Management Shell

$Export = Get-Mailbox

(Saving to a Variable)

 

Step 2:

Specifying folders Inbox and Sent Items

$Export|%{$_|New-MailboxExportRequest -InclueFolders "#Sentitems#,"#inbox#" -FilePath file://servername/pst/$($_.alias).pst}

 

Criteria’s will be added in the future

 

Regards

Satheshwaran Manoharan

Revert to this revision