taskkill is used to terminate the process.
The specific command rules are as follows:
TASKKILL [/S system [/U username [/P [password]]]]
{ [/FI filter] [/ PID processid | /IM imagename] } [/F] [/T]
Description:
This command line tool can be used to end at least one process.
You can end the process based on the process id or image name (Image).
Parameter list:
Parameter:
/S system remote computer name
/U username
/P password, / Use S /U /P parameters together
/PID processid PID number of the process to be killed
/IM imagename Kill the process based on the image name
/F Forced end Process
/T Kill processes related to PID or image name
/FI filter, kill processes in batches
The above is the detailed content of Introduction to taskkill command. For more information, please follow other related articles on the PHP Chinese website!