First, show what processes are running using the tasklist command:
C:>tasklistSecond, use Taskkill to kill it by process name or process ID:
C:>Taskkill /IM firefox.exe /F
C:>Taskkill /PID 26356 /FThe /F flag forces the process to quit.
[Source: Tweaks]