当命令行参数与变量一起提供时,Powershell 命令调用不起作用

时间:2021-01-22 07:36:13

标签: powershell command-line-arguments

我正在尝试为“net accounts”命令提供命令行参数。这在写出没有变量的命令时有效,但在传递带有变量的命令行参数时无效。

这是一个演示脚本:

Write-Host "--- As variable"
$Sw = "/lockoutduration:15 /lockoutwindow:15"
Write-Host $Sw
&net.exe accounts $Sw
Write-Host "--- Without variable"
&net.exe accounts /lockoutduration:15 /lockoutwindow:15

输出:

> .\Test.ps1
--- As variable
/lockoutduration:15 /lockoutwindow:15
You entered an invalid value for the /LOCKOUTDURATION option.

More help is available by typing NET HELPMSG 3952.

--- Without variable
The command completed successfully.

提供一组命令行参数的方法是什么?

操作系统:Windows 10 Pro 20H2,Powershell 版本:5.1

1 个答案:

答案 0 :(得分:3)

向程序发送多个参数时,您需要将它们作为数组传递。试试:

std::set::lower_bound
相关问题