1、查看当前端口占用进程
.NETstat -ano | findstr *<port used>* TCP 0.0.0.0:*<port used>* 0.0.0.0:0 LISTENING *<pid>* TCP [::]:*<port used>* [::]:0 LISTENING *<pid>* >
2、杀掉指定进程
taskkill /F /PID *<pid> SUCCESS: The process with PID *<pid>* has been terminated.