Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to kill process and process with PID could not be terminated. Access is denied

I use windows 10 so I try to kill the port this command

netstat -ano | findstr :8006

taskkill /PID 3984 /F

but I didn't kill the process. But it comes

ERROR: The process with PID 3984 could not be terminated.
Reason: Access is denied.
like image 274
Vignesh_E Avatar asked Nov 08 '22 01:11

Vignesh_E


1 Answers

Run your cmd as an administrator. It will work.

like image 71
Tabish Khan Avatar answered Nov 14 '22 21:11

Tabish Khan