Horje
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]




Shell

Related
clam av debian not installing Code Example clam av debian not installing Code Example
Build docker file with no cache Code Example Build docker file with no cache Code Example
wget -v usage Code Example wget -v usage Code Example
Crear repo para git hub Code Example Crear repo para git hub Code Example
cheese not working in ubuntu 20.04 asus Code Example cheese not working in ubuntu 20.04 asus Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8