Back to Script Function Reference
The Kill_Process() function kills all running processes matching the specified filename.
Kill_Process(filename)
Argument | Required | Description |
---|---|---|
filename | Yes | The filename of the process(es) you want to kill. If filename contains a backslash character ( \ ) then it is expected to be a full absolute path\filename (e.g. c:\windows\notepad.exe). Any script environment variables found in filename will be replaced by their actual values when the script is executed. |
Kill_Process(notepad.exe)
This kills any running process who's path-less filename is “notepad.exe”
Kill_Process(c:\windows\notepad.exe)
This kills any running process who's absolute full path\filename is “c:\windows\notepad.exe”
Kill_Process(%dbpath%\Joy2Key\JoyToKey.exe)
This kills the running process JoyToKey.exe if it was started from “%dbpath%\Joy2Key\”