Terminate stops the process immediately, without giving it a chance to save state or warn its user. Use it when a process is consuming runaway resources or has hung.

Select one or more processes on the Processes tab, then either:
A confirmation dialog appears. Click Terminate to proceed. The dialog also has a Terminate all processes with this name checkbox (worded in the plural when several processes are selected); tick it to terminate every process that shares the same name, not just the ones you selected.
The Windows API call WTSTerminateProcess(handle, pid, 0) runs against each selected process on its host server. Buffers are not flushed, file handles are closed by the OS without giving the process a chance to write final data, and no logoff prompt appears for the user whose session the process was in.
A success log entry is written for each terminated process; failures are logged with the Win32 error message. Check the Application log tab if a termination did not work as expected.
Selecting processes across several servers is allowed. The confirmation dialog applies to the entire selection; each process is terminated against its own server.