Answers for "How to terminate multiple processes in windows powershell"

0

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]
Posted by: Guest on March-20-2022

Code answers related to "How to terminate multiple processes in windows powershell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language