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 に答える