Powershell Copy-Item到远程会话随机失败

时间:2018-03-14 10:02:35

标签: powershell remote-server

我使用此Powershell命令复制文件夹,该文件夹包含从本地计算机到远程VM的许多子文件夹和文件。

$session = New-PSSession -ComputerName $desComputerName -Credential $credentials
Copy-Item -Path $sourceFolder -Destination $destinationFolder -Recurse -Force -ToSession $session

大多数时候它运作得很好,一切都被复制了,但有时它并没有。 这是我失败时总是得到的错误:

Copy-Item : Failed to create directory <A-Random-Folder> on remote destination.

这里是完整的错误日志:

Copy-Item : Starting a command on the remote server failed with the following error message : <s:Envelope 
xml:lang="en-US" xmlns:s="http://www.w3.org/2003/05/soap-envelope" 
xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:x="http://schemas.xmlsoap.org/ws/2004/09/transfer" 
xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:n="http://schemas.xmlsoap.org/ws/2004/09/enumeration" 
xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns:p="http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd">
<s:Header><a:Action>http://schemas.dmtf.org/wbem/wsman/1/wsman/fault</a:Action><a:MessageID>uuid:BE54F3C6-3E48-40CC-882
6-29DECA14BAC7</a:MessageID><p:OperationID s:mustUnderstand="false">uuid:03909886-0D49-489B-AD87-AC5654A64257</p:Operat
ionID><p:SequenceId>1</p:SequenceId><a:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:To><a:Rela
tesTo>uuid:82E5942D-D7CC-40B9-B16D-2E2A07635273</a:RelatesTo></s:Header><s:Body><s:Fault><s:Code><s:Value>s:Receiver</s
:Value><s:Subcode><s:Value>w:InternalError</s:Value></s:Subcode></s:Code><s:Reason><s:Text 
xml:lang="en-US"></s:Text></s:Reason><s:Detail><unknown></s:Detail></s:Fault></s:Body></s:Envelope> For more 
information, see the about_Remote_Troubleshooting Help topic.
At MyFolder\Deploy.ps1:63 char:5
+     Copy-Item -Path $sourceFolder -Destination $destinationFolder -Re ...
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (System.Management.Automation.PowerShell:PowerShell) [Copy-Item], PSRe 
   motingTransportException
    + FullyQualifiedErrorId : CopyFileRemoteExecutionError,Microsoft.PowerShell.Commands.CopyItemCommand

Copy-Item : Failed to create directory 'MyDestinationFolder\CKEditor\plugins\pastefromword\filter' on 
remote destination.
At MySourceFolder\Deploy.ps1:63 char:5
+     Copy-Item -Path $sourceFolder -Destination $destinationFolder -Re ...
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : WriteError: (MyDestinationFolder\CKEditor\plugins\pastefromword\filter:String) [Copy-Item], IOException
    + FullyQualifiedErrorId : FailedToCreateDirectory,Microsoft.PowerShell.Commands.CopyItemCommand

总结:

  • 我使用远程计算机的管理员凭据初始化会话
  • 复制项操作并不总是失败
  • 操作无法创建的文件夹并不总是相同

1 个答案:

答案 0 :(得分:1)

可能会或可能没有帮助的一些想法:

检查目标文件夹的总长度&amp;文件 - 因为您正在复制“许多文件夹和文件”,您可能会达到其中一个限制:

  

目录路径的240个字符

     

文件全名<260个字符

另一个想法是在副本上使用-container开关,该开关记录为:“表示此cmdlet在复制操作期间保留容器对象。”

正如其他人所建议的那样,如果您可以使用文件共享,请考虑使用Xcopy或Robocopy。

在使用XCopy进行自动构建期间,我有很好的结果来复制千兆字节的深层目录。

Robocopy功能更强大,可以更好地控制重试,但通常不值得为其非常广泛和复杂的交换机带来额外的麻烦。