The FolderInfo tag in the XML created by Recovery Manager during a restore operation from an Archive Manager source storage contains information on the mailbox and Folder location that the message came from.
If the Restore Wizard is used then this information is populated correctly but if the same mailbox is restored using a Task instead then the FolderInfo tag contains no information.
Product Defect
STATUS
Waiting for a fix in a future release of Recovery Manager for Exchange
WORKAROUND
Use the Resore Wizard to restore mailboxes from Archive Manager. If restoring multiple mailboxes use Powershell to perform the restore to PST files (For more information, see Additional Information below).
To restore all mailboxes from Archive Manager to seperate PST files using PowerShell use the syntax from the example below:
Attach-RMEArchiveManager -ServerName am.hds.msk.qsft -Port 5555 -UserName admin -Password kuku01 -Authentication Forms | Get-RMEMailbox | Restore-RMEMailbox -TargetPath "c:\temp "
To restore specific mailboxes from an Archive Manager server using Powershell a batch file can be created. Each of the lines of this batch file will create a PST file for the required mailboxes. The syntax for each of these PS cmdlets could be of this format:
Attach-RMEArchiveManager -ServerName SERVERNAME -Port PORTNUMBER -UserName admin -Password PASSWORD -Authentication Forms | Get-RMEMailbox | ? {$_.displayname -like 'MAILBOXNAME'} | Restore-RMEMailbox -TargetPath "c:\temp"
Please note: Authentication could be either Forms or Windows in which case the -UserName and -Password switches will also be modified accordingly