开始 - 处理:找不到接受参数的位置参数

时间:2018-01-22 05:28:33

标签: powershell microfocus

尝试从powershell运行时出现上述错误。

start /wait "" "C:\Program Files (x86)\Common Files\SafeNet Sentinel\Sentinel RMS License Manager\WinNT\cesadmintool" -term install -f FileName

1 个答案:

答案 0 :(得分:0)

您的命令不正确。

在PowerShell中,startStart-Process cmdlet的别名。 PowerShell不使用以/开头的参数,因此它没有/wait参数。您正尝试使用PowerShell中start内置的cmd.exe命令。正如您所注意到的那样,这不起作用。

这就是您在PowerShell中所需要做的所有事情:

& "C:\Program Files (x86)\Common Files\SafeNet Sentinel\Sentinel RMS License Manager\WinNT\cesadmintool" -term install -f FileName

(大概你需要用一些实际的文件名替换单词" FileName")

该行开头的&是PowerShell的调用(调用)运算符。它允许您将字符串作为命令运行。