Link to home
Start Free TrialLog in
Avatar of Scotch Tech
Scotch TechFlag for United States of America

asked on

Exchange 2013 - New-mailboxexport

This command is killing me. How can I export a specific folder under the Top Level?

I tried:
New-MailboxExportRequest -Mailbox name -sourcerootfolder "name\RCO 002278-03205\" -FilePath \\ffuspexch01\filename.pst

New-MailboxExportRequest -Mailbox name -includefolder "name\RCO 002278-03205\*" -FilePath \\ffuspexch01\filename.pst
Avatar of Ken Critser
Ken Critser
Flag of United States of America image

i typically use
get-mailboxfolderstatistics <name> | select identity

Open in new window

to get the folder name.  

Then when running the export its like this:

new-mailboxexportrequest -mailbox name -IncludeFolders "name\\Folder1\\Folder2" -FilePath \\SomeServer\Someshare\file.pst

Open in new window


You need to doubleslash it to get it to treat it as not having special characters.

Is there a specific error you are getting?
ASKER CERTIFIED SOLUTION
Avatar of Scotch Tech
Scotch Tech
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mohammad Ishtyaq khatri
you should be probably using something like this to pull a specific folder out in the pst

New-MailboxExportRequest -Mailbox USERNAME -IncludeFolders "#Inbox#" -FilePath \\YOURPATH

Open in new window

Avatar of Scotch Tech

ASKER

my solution worked