I'm getting the above error when trying to run from powershell.
start /wait "" "C:\Program Files (x86)\Common Files\SafeNet Sentinel\Sentinel RMS License Manager\WinNT\cesadmintool" -term install -f FileName
I'm getting the above error when trying to run from powershell.
start /wait "" "C:\Program Files (x86)\Common Files\SafeNet Sentinel\Sentinel RMS License Manager\WinNT\cesadmintool" -term install -f FileName
Your command is not correct.
In PowerShell, start
is an alias for the Start-Process
cmdlet. PowerShell does not use parameters that start with /
, so it has no /wait
parameter. You are trying to use the start
command that's built into cmd.exe
in PowerShell. That does not work, as you have noticed.
This is all you need to do in PowerShell:
& "C:\Program Files (x86)\Common Files\SafeNet Sentinel\Sentinel RMS License Manager\WinNT\cesadmintool" -term install -f FileName
(Presumably you need to replace the word "FileName" with some actual file's name.)
The &
at the beginning of the line is PowerShell's call (invocation) operator. It lets you run a string as a command.