各位晚上好,
我正在使用命令行将参数传递给以下脚本中的变量,以便在我从该脚本中调用的另一个 ps1 中运行。每当我尝试从命令行传递参数时,我都会收到以下错误
Start-Process:找不到接受参数的位置参数
有人可以提供帮助吗?
感谢您的宝贵时间,非常感谢您的帮助。
param
(
[string]$targetserver = $args[0], #target server
[string]$module = $args[1], #module name
)
function Get-Script-Directory
{
return Split-Path $script:MyInvocation.MyCommand.Path
}
Start-Process powershell.exe (Join-Path (Get-Script-Directory) "...\StopServices.ps1") -ArgumentList $targetserver $module