Find Process Using Specific Port in Windows

I was trying to run IIS Express for debugging the other day but apparently the port that IIS Express is trying to bind was already in used by other process: so, only terminate the process if you are sure that it is not being used by a critical process or application. Alternatively, you can terminate the process that is using the port number to release it. First, we need to find out which process is using the port number....

Sebastian