尝试从 powershell 运行时出现上述错误。
start /wait "" "C:\Program Files (x86)\Common Files\SafeNet Sentinel\Sentinel RMS License Manager\WinNT\cesadmintool" -term install -f FileName
尝试从 powershell 运行时出现上述错误。
start /wait "" "C:\Program Files (x86)\Common Files\SafeNet Sentinel\Sentinel RMS License Manager\WinNT\cesadmintool" -term install -f FileName
你的命令不正确。
在 PowerShell 中,start
是Start-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 的调用(调用)运算符。它允许您将字符串作为命令运行。