Send signal to process by PID in Windows, like POSIX kill Windows has no process signaling mechanism like what POSIX provide using the kill command. But windows-kill could send signal to process by PID
## Features * Support both 32bit (Win32) and 64bit (x64) Windows * Support both SIGNBREAK (Ctrl + Break) and SIGINT (Ctrl + C) Signals ## Usage Examples Using the **windows-kill** is easy and straightforward. It's just like POSIX kill. If signal sending was successful or any error occurred during the sending, appropriate message will be printed in cmd. ### Sending signal to PID ``` windows-kill -SIGNALTYPE PID ``` ### Sending SIGBREAK (Ctrl + Break) to sample 1234 PID ``` windows-kill -SIGBREAK 1234 windows-kill -1 1234 ``` ### Sending SIGINT (Ctrl + C) to sample 1234 PID ``` windows-kill -SIGINT 1234 windows-kill -2 1234 ``` ### List supported signal types ``` windows-kill -l ``` ### Usage help ``` windows-kill -h ```