Windows结束指定端口进程| Id | Title | DateAdded | SourceUrl | PostType | Body | BlogId | Description | DateUpdated | IsMarkdown | EntryName | CreatedTime | IsActive | AutoDesc | AccessPermission |
| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------|
| 16455118| Windows结束指定端口进程| 2022-07-07T16:20:00| | BlogPost|
1 打开cmd命令行窗口。根据端口得到 PID
netstat -ano | findstr 8200
2 根据 PID 查进程名称
tasklist | findstr 你的PID
3 根据 PID 结束对应进程,强制关闭指定端口
taskkill -PID 你的PID -F
参考:https://www.cnblogs.com/lbky/articles/11022221.html
| 648658| | 2022-07-08T10:33:00| false| | 2022-07-07T16:20:26.9| true| 1 打开cmd命令行窗口。根据端口得到 PID netstat -ano | findstr 8200 2 根据 PID 查进程名称 tasklist | findstr 你的PID 3 根据 PID 结束对应进程,强制关闭指定端口 taskkill -PID 你的PID -F 参考:https:/| Anonymous| 标签:findstr,Windows,PID,端口,指定,-------------,进程 From: https://www.cnblogs.com/ralphlauren/p/18621323