How to restore from Archive Manager source into PST using powershell ?
Attach-RMEArchiveManager -ServerName archivemanager.domain.local -Port 80 -TargetDomain domain -UserName ExportAccount -Password xxxxxx -Authentication Windows | Get-RMEMailbox -MailboxNameInclude "First Name, Last Name" | Restore-RMEMailbox -TargetPath "C:\exports\"
or (this cmdlet below will skiperrors)
Attach-RMEArchiveManager -ServerName archivemanager.domain.local -Port 80 -TargetDomain domain -UserName ExportAccount -Password xxxxxx -Authentication Windows | Get-RMEMailbox -MailboxNameInclude "First Name, Last Name" | Restore-RMEMailbox -SkipErrors -TargetPath "C:\exports\"
Type the above as a single line, replace the domain name, account name, etc specifics accordingly.