gpt4 book ai didi

windows - 使用 Powershell 的 Invoke-Command 调用带参数的批处理文件

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

我想使用 Powershell 在远程机器上调用批处理文件。这个批处理文件有参数。这是我到目前为止所拥有的:

$script = "\\fileshare\script.cmd"
$server = $args[0]
$args [string]::join(',',$args[1 .. ($args.count-1)])

Invoke-Command -computername $server {$script + ' ' + $args}

经过一些搜索,我发现 Invoke-Command 函数在一个全新的进程中运行其脚本 block ,因此您不能将变量放入其中(它们不会展开)。这就是 -ArgumentList 标签的用途。所以我尝试了这个......

Invoke-Command -computername $server {\\fileshare\script.cmd} -ArgumentList "FirstArgument"

那也不管用...我的批处理脚本告诉我它没有传递任何参数。我找不到任何明确说明的内容,但看起来 -ArgumentList 参数仅适用于 Powershell 脚本(它不会将它们提供给批处理脚本)。

关于如何使用 Invoke-Command 调用带参数的批处理文件有什么想法吗?

最佳答案

当您将参数列表传递给脚本 block 时,尝试使用 PARAM 指令“接收它们”。像这样:

Invoke-Command -computername $server {PARAM($myArg) \\fileshare\script.cmd $myArg} -ArgumentList "FirstArgument"

或者你可以只使用 $args 自动变量:

Invoke-Command -computername $server {\\fileshare\script.cmd $args} -ArgumentList "FirstArgument"

关于windows - 使用 Powershell 的 Invoke-Command 调用带参数的批处理文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8541809/

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