win 发表于 2021-09-20 更新于 2022-10-10 分类于 other , Windows 阅读次数: 找到占用某个端口的进程1234567netstat -ano # 列出所有端口netstat -aon|findstr "443" # 查看对应端口对应的PIDtasklist|findstr "2720" # 根据PID找到对应的进程taskkill /f /t /im Tencentdl.exe # 结束该进程