Cara Menghentikan banyak proses di 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]
Chris Nzoka-okoye