作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个批处理文件,它将调用 Powershell 脚本:
批处理文件: @回声关闭 powershell ..\PowerShellScript.ps1
powershell 脚本又具有一个需要参数的函数:
POWERSHELL 脚本:
function PSFunction([string]$Parameter1)
{
Write-Host $Parameter1
}
假设我有一个值:VALUE1,在调用 PowerShellScript.ps1 时需要从批处理文件传递该值,如何将其传递给函数 PSFunction 以便我的输出为 VALUE1?
最佳答案
将您的脚本修改为如下所示
function PSFunction([string]$Parameter1)
{
Write-Host $Parameter1
}
PSFunction $args[0]
从批处理文件来看,它看起来像
powershell ..\PowerShellScript.ps1 VALUE1
关于powershell - 如何将参数从批处理文件传递到 Powershell 脚本内的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1100190/
我是一名优秀的程序员,十分优秀!