Найдите и убейте процесс на определенных портовых окнах
# find the process
netstat -ano | findstr :<PORT>
# kill the process
taskkill /PID <PID> /F
Modern Moose
# find the process
netstat -ano | findstr :<PORT>
# kill the process
taskkill /PID <PID> /F