Created
April 7, 2015 14:25
-
-
Save jesusgoku/c08b10d568df99f06696 to your computer and use it in GitHub Desktop.
Kill process on CMD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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