Skip to content

Instantly share code, notes, and snippets.

@jesusgoku
Created April 7, 2015 14:25
Show Gist options
  • Save jesusgoku/c08b10d568df99f06696 to your computer and use it in GitHub Desktop.
Save jesusgoku/c08b10d568df99f06696 to your computer and use it in GitHub Desktop.
Kill process on CMD
REM Find process to kill
tasklist /FO TABLE /FI "status eq running"
REM Kill process by NAME
taskkill /IM notepad.exe
REM Kill process by PID
taskkill /PID 409
REM Kill process and secondary process
taskkill /PID 710 /T
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment