Forum Discussion
loenenb
Nov 22, 2018Copper Contributor
Storage Migration Service - Can't open transfer and error logs after migrating data
Hi Community, After migrating a drive I'm trying to see which file transfers failed and why but I'm getting this message when trying to open either the transfer log or the errors only log: Tr...
chatro9314
Feb 11, 2019Copper Contributor
Try adjusting the timeout values on the orchestrator server. If you're migrating a lot of data the default value may be to short.
- Edit "C:\Windows\SMS\Microsoft.StorageMigration.Service.exe.config" and change the sendTimeout from 1 to 10 minutes.
<bindings>
<netTcpBinding>
<binding name="NetTcpBindingSms"
sendTimeout="00:10:00"
- Add the following registry key to change the WCF client timeout from 1 to 10 minutes as well.
reg add HKLM\Software\Microsoft\SMSPowershell /v WcfOperationTimeoutInMinutes /t REG_DWORD /d 10 - Restart the SMS services on the orchestrator server.
CEL_RK
Sep 12, 2019Brass Contributor
chatro9314Thanks! Fixed it for me.