标签:stat shell pre window 端口号 code 名称 exe 指定端口
我很懒,,,不想敲一个命令一个命令敲。。。
“偷懒是有前提的,不是之前,就是之后。”
:: Windows 下 杀死指定进程
taskkill /f /t /im java.exe
通过端口号找到对应进程 PID
:: 查找指定端口占用程序的PID
netstat -aon | findstr "4000"
通过进程 PID 杀死指定进程
:: 通过 PID 杀死指定进程
taskkill /pid 1700
标签:stat shell pre window 端口号 code 名称 exe 指定端口
原文地址:https://www.cnblogs.com/ljmatlight/p/13445990.html