How to terminate multiple processes in windows powershell Code Example
How to terminate multiple processes in windows powershell
To do this, run the powershell as admin. then,
use the asteriks wildcard to get the processes provided they all
have a common word in their names. for example "chrome"
Get-Process -Name "*chrome*"
Then kill the tasks one after the other using the kill command
taskkill /F /PID [PROCESS ID]