IT/Windows
프로세스 확인 및 KILL
underbell
2014. 7. 21. 15:23
- 1234 사용 포트 PID 확인
netstat -ano | find "1234"
- 567 PID 프로세스명 확인
tasklist /FI "PID eq 567"
8080 포트 사용 프로세스 kill
for /f "tokens=5" %p in (' netstat -ano ^| find
":8080" ') do taskkill /F /PID %p