Skip to content

Instantly share code, notes, and snippets.

@vansosnin
Last active March 1, 2016 04:40
Show Gist options
  • Save vansosnin/75d0d87bf2442388c419 to your computer and use it in GitHub Desktop.
Save vansosnin/75d0d87bf2442388c419 to your computer and use it in GitHub Desktop.
Find and kill process (windows)
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