Last updated on March 13, 2019
If you try to end process in Windows and getting error “Access denied”, you should try one of these commands.
Open cmd.exe as administrator
-
wmic process where name="processname.exe" call terminate
-
wmic process where "name='processname.exe'" delete
-
taskkill /IM "process_name" /T /F