查杀端口进程

//查找该端口号对应的进程
netstat  -ano | findstr "8082"
//杀死该端口号对应的进程
taskkill /pid 10680 -f
原文地址:https://www.cnblogs.com/lhang55/p/9225161.html