-ArgumentList
基于与脚本块命令一起使用,例如:
Invoke-Command -Cn (gc Servers.txt) {param($Debug=$False, $Clear=$False) C:\Scripts\ArchiveEventLogs\ver5\ArchiveEventLogs.ps1 } -ArgumentList $False,$True
当您使用a调用它时,-File
它仍会像哑哑数组那样传递参数。我已经提交了功能请求,以将其添加到命令中(请投票赞成)。
因此,您有两个选择:
如果您在远程机器可访问的网络位置中具有这样的脚本(请注意,这-Debug
是隐含的,因为当我使用该Parameter
属性时,该脚本会隐式获取CmdletBinding,因此会获取所有常用参数):
param(
[Parameter(Position=0)]
$one
,
[Parameter(Position=1)]
$two
,
[Parameter()]
[Switch]$Clear
)
"The test is for '$one' and '$two' ... and we $(if($DebugPreference -ne 'SilentlyContinue'){"will"}else{"won't"}) run in debug mode, and we $(if($Clear){"will"}else{"won't"}) clear the logs after."
$Clear
如果您不想调用...的含义,则可以使用以下两种Invoke-Command
语法之一:
icm -cn (gc Servers.txt) {
param($one,$two,$Debug=$False,$Clear=$False)
C:\Scripts\ArchiveEventLogs\ver5\ArchiveEventLogs.ps1 @PSBoundParameters
} -ArgumentList "uno", "dos", $false, $true
在那篇文章中,我将在脚本块中复制我关心的所有参数,以便可以传递值。如果我可以对它们进行硬编码(这是我实际上所做的),则无需这样做并使用PSBoundParameters
,我可以将需要的内容通过。在下面的第二个示例中,我将传递$ Clear,只是为了演示如何传递开关参数:
icm -cn $Env:ComputerName {
param([bool]$Clear)
C:\Scripts\ArchiveEventLogs\ver5\ArchiveEventLogs.ps1 "uno" "dos" -Debug -Clear:$Clear
} -ArgumentList $(Test-Path $Profile)
另一种选择
如果脚本在您的本地计算机上,并且您不想将参数更改为位置参数,或者您想要指定作为通用参数的参数(因此您无法控制它们),则需要获取以下内容:该脚本并将其嵌入到您的scriptblock中:
$script = [scriptblock]::create( @"
param(`$one,`$two,`$Debug=`$False,`$Clear=`$False)
&{ $(Get-Content C:\Scripts\ArchiveEventLogs\ver5\ArchiveEventLogs.ps1 -delimiter ([char]0)) } @PSBoundParameters
"@ )
Invoke-Command -Script $script -Args "uno", "dos", $false, $true
后记:
如果您确实需要为脚本名称传递一个变量,那么您将执行的操作将取决于该变量是在本地还是远程定义的。通常,如果您有一个带有脚本名称的变量$Script
或环境变量$Env:Script
,则可以使用调用运算符(&)执行它:&$Script
或&$Env:Script
如果它是已在远程计算机上定义的环境变量,则仅此而已。如果是局部变量,则必须将其传递给远程脚本块:
Invoke-Command -cn $Env:ComputerName {
param([String]$Script, [bool]$Clear)
& $ScriptPath "uno" "dos" -Debug -Clear:$Clear
} -ArgumentList $ScriptPath, (Test-Path $Profile)