長いファイル名(256文字以上)を含んだフォルダーをXCOPYでコピーしたところ、コピーされずに終了した。
タスクスケジューラで起動すると、前回の結果が0x04となっていた。
【失敗したXCOPY】
XCOPY /Y /E /D /C /R 元フォルダー 先フォルダー
ROBOCOPYで対応した。
【使用したROBOCOPY】
ROBOCOPY /E /XO /IS /XJ /XJD 元フォルダー 先フォルダー
長いファイル名(256文字以上)を含んだフォルダーをXCOPYでコピーしたところ、コピーされずに終了した。
タスクスケジューラで起動すると、前回の結果が0x04となっていた。
【失敗したXCOPY】
XCOPY /Y /E /D /C /R 元フォルダー 先フォルダー
ROBOCOPYで対応した。
【使用したROBOCOPY】
ROBOCOPY /E /XO /IS /XJ /XJD 元フォルダー 先フォルダー
<?xml version="1.0"?>
<configuration>
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="MyTcpBinding">
<security mode="Transport" /> ※2
</binding>
</netTcpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="TestBehavior">
<serviceMetadata httpGetEnabled="true" httpGetUrl="" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="TestBehavior" name="TcpServiceTest.TestService">
<endpoint address="" binding="netTcpBinding" bindingConfiguration="MyTcpBinding"
contract="TcpServiceTest.ITestService" />
<endpoint address="mex" binding="mexHttpBinding" bindingConfiguration=""
contract="IMetadataExchange" /> ※3
<host>
<baseAddresses>
<add baseAddress="net.tcp://server/dev/TcpServiceTest.TestService.svc" />
<add baseAddress="http://server/dev/TcpServiceTest.TestService.svc" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
</configuration>
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<behaviors />
<bindings>
<netTcpBinding>
<binding name="MyNetTcpBinding">
<security mode="Transport"> ※2
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
<message clientCredentialType="Windows" />
</security>
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint address="net.tcp://server/dev/TcpServiceTest.TestService.svc"
binding="netTcpBinding" bindingConfiguration="MyNetTcpBinding"
contract="sr.ITestService" name="NetTcpBinding_ITestService">
<!-- ※1
<identity>
<userPrincipalName value="username@domain" />
</identity>
-->
</endpoint>
</client>
</system.serviceModel>
</configuration>