what is shortcut command to kill process in windows command?

Ctrl + C should stop a program running from the command prompt, similar to linux.

If that doesn’t work try to force kill a process from the command prompt, using the following command:

taskkill /F /IM process.exe

/F will force termination of the process, /IM means you’re going to provide the running executable that you want to end, thus process.exe is the process to end.

tried using alt + F4?

Leave a Comment