Показ дописів із міткою windows. Показати всі дописи
Показ дописів із міткою windows. Показати всі дописи

понеділок, 16 листопада 2015 р.

How to check what services are in run and kill proces in Windows using console.

1. c:\> cd c:\windows\system32
2. C:\WINDOWS\system32>netstat -o -n -a | findstr 8080

  TCP    0.0.0.0:8080           0.0.0.0:0              LISTENING       4184

3. C:\WINDOWS\system32> taskkill /F /PID 4184

SUCCESS: Sent termination signal to the process with PID 4184.