我的powershell脚本发送一个文件到几个客户端在自定义会话使用以下代码(代码缩短)
function DoCopyFile
{
param(
[Parameter(Mandatory=$true)] $RemoteHost,
[Parameter(Mandatory=$true)] $SrcPath,
[Parameter(Mandatory=$true)] $DstPath,
[Parameter(Mandatory=$true)] $Session)
.
.
.
$Chunks | Invoke-Command -Session $Session -ScriptBlock { `
param($Dest, $Length)
$DestBytes = new-object byte[] $Length
$Pos = 0
foreach ($Chunk in $input) {
[GC]::Collect()
[Array]::Copy($Chunk, 0, $DestBytes, $Pos, $Chunk.Length)
$Pos += $Chunk.Length
}
[IO.File]::WriteAllBytes($Dest, $DestBytes)
[GC]::Collect()
} -ArgumentList $DstPath, $SrcBytes.Length
.
.
.
}
$Pwd = ConvertTo-SecureString $Node.Auth.Password -asplaintext -force
$Cred = new-object -typename System.Management.Automation.PSCredential -ArgumentList ("{0}\{1}" -f $Name, $Node.Auth.Username),$Pwd
$Sopts = New-PSSessionOption -MaximumReceivedDataSizePerCommand 99000000
$Session = New-PSSession -ComputerName $Name -Credential $Cred -SessionOption $Sopts
DoCopyFile $Name ("{0}\{1}" -f $Node.Installer.ResourceDir, $Driver.Name) $Dest $Session
字符串
完整复制功能如下所述:http://poshcode.org/2216
文件大于52MB时出现问题。失败,出现以下错误:
Sending data to a remote command failed with the following error message: The total data received from the remote
client exceeded allowed maximum. Allowed maximum is 52428800. For more information, see the
about_Remote_Troubleshooting Help topic.
+ CategoryInfo : OperationStopped: (CLI-002:String) [], PSRemotingTransportException
+ FullyQualifiedErrorId : JobFailure
+ PSComputerName : CLI-002
型
正如你在代码中看到的,我使用定制的ps会话。当我将MaximumReceivedDataSizePerCommand设置为非常低的值(如10kb)时,它会失败,并显示一条消息,告诉maximum为10kb,因此我假设MaximumReceivedDataSizePerCommand应用于ps会话对象。
是否需要在远程计算机或其他地方执行此配置?是什么导致了这个错误?
谢谢。
3条答案
按热度按时间bzzcjhmw1#
您需要在远程计算机中创建一个新的
PSSessionConfiguration
(这是为了不使用默认值):字符串
然后配置所需的参数(在本例中为
MaximumReceivedDataSizePerCommandMB
和MaximumReceivedObjectSizeMB
):型
然后使用您需要的
PSSessionConfiguration
创建新会话:型
在您的本地计算机中。
通过这种方式,使用来自www.example.com的Send-Fileposh.org,我复制了一个~ 80 MB大小的文件。大尺寸返回内存异常。
更多关于这一点在这里。
d5vmydt92#
我在会话中使用copy-item。我似乎没有经历过极限。
字符串
sh7euo9m3#
您可以查看this post有关后台智能传输服务(BITS)的信息。如需更多帮助,请查看MSDN documentation。从文章来看,有这些考虑:
使用BITS协议的优点:
因此,BITS是在慢速网络中传输大文件的优选协议。
希望能帮上忙。