0

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

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

1 回答 1

2

你的命令不正确。

在 PowerShell 中,startStart-Processcmdlet 的别名。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 的调用(调用)运算符。它允许您将字符串作为命令运行。

于 2018-01-22T17:43:56.613 回答