gpt4 book ai didi

azure devops ,使用变量组中的变量调用服务器命令

转载 作者:行者123 更新时间:2023-12-03 07:04:16 26 4
gpt4 key购买 nike

我在变量组中有变量,我尝试在 Invoke-Command -ScriptBlock 中使用它们。

并且没有找到变量,没有成功到达变量组中的变量。

该脚本在 PowerShell 中运行,发布版本:

Invoke-Command -ComputerName X -ScriptBlock {
Write-Host $env:Mypod
}

我阅读了有关参数列表的内容,但我不知道如何使用它。

最佳答案

根据Dilly B的建议:

您可以将参数传递给Invoke-Command以访问变量组中的变量:

$var1 = $env:Mypod  
Invoke-Command -ComputerName X -ScriptBlock { Write-Host $args[0] } -ArgumentList $var1

您可以引用Use a variable group's secret and nonsecret variables in an Azure PipelineAzure DevOps: how to manage CI/CD variable groups using PowerShell

关于azure devops ,使用变量组中的变量调用服务器命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71673336/

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