0

我有一个客户端的 Office 365 域,我目前正在尝试将 PST 文件导入 O365 地址。我搜索了这个问题,发现了Microsoft Exchange PST Capture

我安装了它,提供了我的 Office 365 域的管理员凭据并开始导入。但它失败了这个错误:

导入错误:在商店中找不到指定的对象

在日志 ( C:\ProgramData\Microsoft\Exchange\PST Capture\Logs\PST Capture Service) 中,我可以找到:

10:28:22.226|Debug  |ImportListImporter  |11 |Error importing D:\ExportPst\dirfond.pst from C:\PSTStaging\13ec9aa3-8887-41fd-8a97-d2f74d7408de.pst
Microsoft.Exchange.WebServices.Data.ServiceResponseException: The specified object was not found in the store.
   at Microsoft.Exchange.WebServices.Data.ServiceResponse.InternalThrowIfNecessary()
   at Microsoft.Exchange.WebServices.Data.MultiResponseServiceRequest`1.Execute()
   at Microsoft.Exchange.WebServices.Data.ExchangeService.BindToFolder[TFolder](FolderId folderId, PropertySet propertySet)
   at RedGate.PSTImporterForExchange.ImportEngine.PstEwsImporter.BindToCorrectFolder(ExchangeService service, ImportOptions options, WellKnownFolderName& rootname, Boolean& failover)
   at RedGate.PSTImporterForExchange.ImportEngine.PstEwsImporter.StartImport(String pstPath, String passWord, ImportOptions options, List`1& problems)
   at RedGate.PSTImporterForExchange.CentralService.ImportListImporter.<>c__DisplayClass8.<ImportFile>b__5(Object param0)

10:28:22.227|Debug  |ImportListImporter  |11 |Keeping Exception ex for result 12459148
Microsoft.Exchange.WebServices.Data.ServiceResponseException: The specified object was not found in the store.
   at Microsoft.Exchange.WebServices.Data.ServiceResponse.InternalThrowIfNecessary()
   at Microsoft.Exchange.WebServices.Data.MultiResponseServiceRequest`1.Execute()
   at Microsoft.Exchange.WebServices.Data.ExchangeService.BindToFolder[TFolder](FolderId folderId, PropertySet propertySet)
   at RedGate.PSTImporterForExchange.ImportEngine.PstEwsImporter.BindToCorrectFolder(ExchangeService service, ImportOptions options, WellKnownFolderName& rootname, Boolean& failover)
   at RedGate.PSTImporterForExchange.ImportEngine.PstEwsImporter.StartImport(String pstPath, String passWord, ImportOptions options, List`1& problems)
   at RedGate.PSTImporterForExchange.CentralService.ImportListImporter.<>c__DisplayClass8.<ImportFile>b__5(Object param0)

10:28:22.232|Debug  |ImportListImporter  |13 |Rethrow od result 12459148

10:28:22.234|Trace  |DBImportFile        |13 |Saving 58 False Error D:\ExportPst\dirfond.pst

10:28:22.318|Error  |ImportListImporter  |13 |Import error: 
Microsoft.Exchange.WebServices.Data.ServiceResponseException: The specified object was not found in the store.
   at RedGate.PSTImporterForExchange.CentralService.ImportListImporter.ImportFile(RepositoryImportFile file)

10:28:22.320|Error  |Import Action       |13 |Error during import
Microsoft.Exchange.WebServices.Data.ServiceResponseException: The specified object was not found in the store.
   at RedGate.PSTImporterForExchange.CentralService.ImportListImporter.ImportFile(RepositoryImportFile file)
   at RedGate.PSTImporterForExchange.CentralService.Actions.StartImportAction.RunImport(Object state)

目标邮箱存在。那是因为来自 Exchange 2007(PST 文件的来源)的电子邮件地址与 O365 不同吗?

我找不到任何关于此的信息,因此非常感谢您的帮助。

4

1 回答 1

0

我通过为对邮箱运行命令的用户设置权限来解决此错误。

Add-MailboxPermission -Identity [TargetMailbox] -User [ExecutingAccount] -AccessRights FullAccess

于 2016-03-01T07:55:53.787 回答