Tips and tricks
PowerShell Windows - see what is running on specific port and kill process
Run the command
netstat -aof | findstr :{{PORT_ID}}
you can then kill the process with
taskkill /PID <pid>
you can add /F for force after taskkill