Last active
March 1, 2016 04:40
-
-
Save vansosnin/75d0d87bf2442388c419 to your computer and use it in GitHub Desktop.
Find and kill process (windows)
This file contains hidden or 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
netstat -o -n -a | findstr :8080 # find process on port 8080 | |
taskkill /f /PID 666 # kill this process | |
taskkill /F /IM chrome.exe # kill all chrome processes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment