首页 > 代码库 > 如何关闭占用端口的应用

如何关闭占用端口的应用

Microsoft Windows [版本 10.0.14393]
(c) 2016 Microsoft Corporation。保留所有权利。

C:\Windows\system32>netstat -aon | findstr "8080"
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 10748
TCP 192.168.1.104:8080 192.168.1.104:14732 TIME_WAIT 0
TCP [::]:8080 [::]:0 LISTENING 10748

C:\Windows\system32>tasklist | findstr "10748"
uTorrent.exe 10748 Console 1 44,424 K

C:\Windows\system32>taskkill /pid 10748 /F
成功: 已终止 PID 为 10748 的进程。

C:\Windows\system32>

如何关闭占用端口的应用