Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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]
 
PREVIOUS NEXT
Tagged: #How #terminate #multiple #processes #windows #powershell
ADD COMMENT
Topic
Name
4+8 =