MacOS – How to terminate multiple applications via Activity Monitor

activity-monitormacmacos

I'm looking at Activity Monitor showing me multiple running processes. I want to terminate multiple processes from the list in one go.

I've tried highlighting the processes but nothing shows up when I double click the highlighted block.

Is there another way to terminate a highlighted block of processes via Activity Monitor?

Best Answer

I would suggest you to:

  1. Launch Terminal
  2. When Terminal has launched, type "top" into the Terminal window. You'll see a list of currently running processes. At the top of the list is an overview of the processes that are running and the resources they're consuming.
  3. When you identify a process that's causing a problem or consuming too many resources, take note of the number in the PID column next to the name of the process. To kill the process, type "kill -9" followed by the PID number. Press Enter. The problem process will now quit.