gpt4 book ai didi

powershell - 远程命令中的最大数据大小

转载 作者:行者123 更新时间:2023-12-04 22:06:15 24 4
gpt4 key购买 nike

我的 powershell 脚本使用以下代码将文件发送到自定义 session 中的多个客户端(代码已缩短)

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 session 。当我将 MaximumReceivedDataSizePerCommand 设置为非常低的值(如 10kb)时,它会失败并显示一条消息,告诉最大值为 10kb,因此我假设 MaximumReceivedDataSizePerCommand 应用于 ps session 对象。

是否需要在远程机器或其他地方进行此配置?是什么导致了这个错误?

谢谢。

最佳答案

您需要在远程计算机中创建一个新的 PSSessionConfiguration(这是为了不使用默认代码):

Register-PSSessionConfiguration -Name DataNoLimits #or the name you like.

然后配置您想要的参数(在本例中为 MaximumReceivedDataSizePerCommandMBMaximumReceivedObjectSizeMB ):
Set-PSSessionConfiguration -Name DataNoLimits `
-MaximumReceivedDataSizePerCommandMB 500 -MaximumReceivedObjectSizeMB 500

然后使用您需要的 PSSessionConfiguration 创建新 session :
$Session = New-PSSession -ComputerName MyRemoteComp -ConfigurationName DataNoLimits

在您的本地计算机中。

通过这种方式使用来自 posh.org 的发送文件,我复制了一个大约 80MB 大小的文件。
更大的尺寸返回内存不足异常。

更多关于这个 here.

关于powershell - 远程命令中的最大数据大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13561730/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com