Answers for "task kill with pid in cmd"

10

cmd kill process by pid

## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Posted by: Guest on February-19-2021
1

windows kill pid

1
2
3
4
> wmic process where "caption = 'java.exe' and commandline like '%server-1.properties%'" get processid
ProcessId
6016
> taskkill /pid 6016 /f
Posted by: Guest on January-05-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language