Deleting items from a specific mailbox can be done really easy via the Powershell using the command export-mailbox. Before deleting the items it may be usefull to make a backup of this items. You can create a backup to a PST of to a special mailbox.

Before executing the command we need to arrange somethings first:

  • the account which we use to execute the command needs to have full access to the mailbox where we want to export items from and where we want to export items to
  • when choosing the option to export to a PST we need the have Outlook installed on our system
  • when choosing the PST option we need to ensure that the directory exists before executing the command

The first step is not very hard to do, by executing the following command

Add-MailboxPermission -Identity johan -User administrator -AccessRights FullAccess

</em>We will give the administrator full access to the mailbox of johan.

The next step is to create the directory, this can be done via Explorer, via the dos-prompt or via Powershell.

When everything is prepared we can start with exporting the items and then deleting them 

Export-Mailbox -Id johan@test.local -StartDate '10/05/08' -EndDate '10/05/08' -PSTFolderPath C:\Backup\johan.pst -deletecontent

The command above will export all items from all folders which are dated the 5th of October and will export them to a PST and delete them from the mailbox. Keep in mind that this also will be the calender items and sent items

Besides this option there are a few other options:

  • export items with specific keywords in the subject -SubjectKeywords 
  • export items with specific keywords in the content –ContentKeywords
  • export items only from a specific folder -IncludeFolders ‘\Sent Items’
  • export items only with a specific attachment name or extension_-AttachmentFilenames_

For a full overview of all options have a look at the following site

open


Comments


Johan Veldhuis