gpt4 book ai didi

.net - Powershell ScriptBlock 不执行

转载 作者:可可西里 更新时间:2023-11-01 11:13:09 26 4
gpt4 key购买 nike

我正在尝试使用 invoke-command 在远程机器上执行代码。该方法的一部分包括一个 ScriptBlock 参数,我感觉我做的事情不正确。

首先,我尝试在脚本中创建一个方法,如下所示:

param([string] $filename)

function ValidatePath( $file, $fileType = "container" )
{
$fileExist = $null
if( -not (test-path $file -PathType $fileType) )
{
throw "The path $file does not exist!"
$fileExist = false
}
else
{
echo $filename found!
$fileExist = true
}
return $fileExist
}


$responseObject = Invoke-Command -ComputerName MININT-OU9K10R
-ScriptBlock{validatePath($filename)} -AsJob

$result = Receive-Job -id $responseObject.Id

echo $result

要调用它,我会执行 .\myScriptName.ps1 -filename C:\file\to\test。该脚本将执行,但不会调用该函数。

然后我想也许我应该把这个函数放到一个新的脚本中。这看起来像:

文件 1:

$responseObject = Invoke-Command -ComputerName MININT-OU9K10R -ScriptBlock {
.\file2.ps1 -filename C:\something } -AsJob

$result = Receive-Job -id $responseObject.Id

echo $result

文件 2:

Param([string] $filename)

这些方法都不会执行该功能,我想知道为什么;或者,我需要做什么才能让它发挥作用。

function ValidatePath( $file, $fileType = "container" )
{
$fileExist = $null
if( -not (test-path $file -PathType $fileType) )
{
throw "The path $file does not exist!"
$fileExist = false
}
else
{
echo $filename found!
$fileExist = true
}
return $fileExist
}

最佳答案

那是因为 Invoke-Command 在远程计算机上执行脚本 block 中的代码。远程计算机上未定义 ValidatePath 函数,那里不存在脚本文件 file2.ps1。没有任何东西可以让远程计算机访问执行 Invoke-Command 的脚本中的代码或运行脚本的计算机上的文件。您需要将 file2.ps1 复制到远程计算机,或者为它提供 UNC 路径以在您的计算机上共享文件,或者将 ValidatePath 函数的内容放在脚本 block 。请务必将 $file 的所有实例更改为 $filename 或相反,并调整代码以交互方式运行,例如您将消除 $fileExistreturn 语句。

要将路径验证代码放入传递给远程计算机的脚本 block 中,您需要执行如下操作:

$scriptblock = @"
if (-not (Test-Path $filename -PathType 'Container') ) {
throw "The path $file does not exist!"
} else {
echo $filename found!
}
"@

$responseObject = Invoke-Command -ComputerName MININT-OU9K10R -ScriptBlock{$scriptblock} -AsJob

N.B. 确保 "@ 没有缩进。它必须在行的开头。

顺便说一句,虽然这没有实际意义,但在 throw 语句之后立即设置变量有什么意义呢?一旦抛出错误,该函数就会终止。 $fileExist = false 在任何情况下都不会执行。您可能想使用 Write-Error

关于.net - Powershell ScriptBlock 不执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17583103/

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