Window questions-concerned(windows下常见的问题解决)

时间:2021-06-07 23:12:08   收藏:0   阅读:32

Windows下查找占用指定端口的App

netstat -ano |findstr 3306 # 查看3306端口
tasklist |findstr (PID号) # 查看指定PID号是什么程序
taskkill /T /F /PID (PID号) # 强制(/F参数)杀死pid为3036的所有进程包括子进程(/T参数)

技术分享图片

原文:https://www.cnblogs.com/openmind-ink/p/14860718.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!