0

I have multiple processes with the same name.However there are some that have child processes.I want to kill all those children.How can i manage that considering i know only the name of the group of processes and not the specific PID:

Picture

In the picture above i have two processes with the same name , however i want to kill the child of the one that has it.How can i manage that ?

P.S The environment is Windows, but i am running with git for windows.

1 Answer 1

1

The screenshot shows that the child is a service.

You can therefor stop the service itself to kill the process.

Commandline would be net stop Fabric but git might have its own method of interacting with services.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .