Finden und töten Sie den Prozess an einem bestimmten Portfenster
# 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