Exchange 2010使用关键字导出到PST

我试图将我们的邮箱之一导出到.PST文件,并有问题find正确的cmdlet。 我们正试图导出用户邮箱的某些关键字。 我已经尝试过使用-Co​​ntentFilter {All-like“ Keyword Test ”}的cmdlet,但没有任何运气。

这是我到目前为止所尝试的,但没有任何运气。 New-MailboxExportRequest -ContentFilter {All-like“ Keyword Test ”} -Mailbox“Pelton”-Name DPeltonExp -FilePath \ ExServer1 \ Imports \ DPelton.pst

我也尝试了其他的,但所有.PST都没有任何电子邮件。 New-MailboxExportRequest -ContentFilter {All-like“Firstword Secondword”} -Mailbox“Pelton”-Name DPeltonExp -FilePath \ ExServer1 \ Imports \ DPelton.pst

New-MailboxExportRequest -ContentFilter {All -eq“Firstword Secondword”} -Mailbox“Pelton”-Name DPeltonExp -FilePath \ ExServer1 \ Imports \ DPelton.pst

New-MailboxExportRequest -ContentFilter {All -eq“ Firstword Secondword ”} -Mailbox“Pelton”-Name DPeltonExp -FilePath \ ExServer1 \ Imports \ DPelton.pst

任何和所有的帮助表示赞赏。 谢谢,

请尝试使用Export-Mailbox命令而不是New-MailboxExportRequest

Export-Mailbox -Identity <MailboxIdParameter> -TargetMailbox <MailboxIdParameter> -TargetFolder <Target_Folder_Name> -ContentKeywords "<String[]>" -AttachmentFilenames "<String[]>" -StartDate "<Month/Day/Year> <Time>" -RecipientKeywords <String[]>