Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
cmdmgr.exe send_signal --PID=<process ID> --signal=<stop|kill|ctrl_c> [--wait_for_stop=<1|0>]

Parameters

Here is list of command parameters:

  • PID – id of process to send signal;

  • signal – type of stop signal. There are 3 types: stop(UNIX – SIGTERM, Windows – WM_QUIT), kill(UNIX – SIGKILL, Windows – process termination), ctrl_c(UNIX – SIGINT, Windows – CTRL_C_EVENT);

  • wait_for_stop – should waiting for process stop or exiting immediately. Optional parameter;

Example

Code Block
cmdmgr.exe send_signal --PID=5040 --signal=stop --wait_for_stop=1

...