PS调用命令和writeallbyes

时间:2018-12-04 12:23:49

标签: powershell powershell-remoting

所以..如主题中所示-我正在使用Invoke-Command将文件复制到远程位置。

不用再做代码了:

$Contents = [System.IO.File]::ReadAllBytes("$workingDir\$FileToCopy")
[string]$FileTo = "C:\$installer"
$result = Invoke-Command -Computername $servername -Credential $Credentials -Scriptblock {
    param(
                   [byte[]]
                   $Contents
               )
    [System.IO.File]::WriteAllBytes($FileTo, $Contents)
    return $? 
} -ArgumentList @( ,$Contents )
$result

问题在于,如果我将$ FileTo替换为手动输入,例如:

[System.IO.File]::WriteAllBytes("C:\MyFileToCopy.txt", $Contents)

一切都很好,否则当我将文件的路径放入字符串变量中时,会出现以下错误:

Exception calling "WriteAllBytes" with "2" argument(s): "Empty path name is not legal."
+ CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : ArgumentException

为什么?

1 个答案:

答案 0 :(得分:0)

您没有将$FileTo作为参数发送给远程系统。

我将使用using来访问变量的内容,例如:

[System.IO.File]::WriteAllBytes($using:FileTo, $Contents)