Command «send _signal»

This command is used to send stop signal to specified process. This can be stop signal, kill signal, or control-c signal.

Syntax

Here is command syntax:

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

cmdmgr.exe send_signal --PID=5040 --signal=stop --wait_for_stop=1
Send signal command example