How to find which process uses some port in windows

How to find which process uses some port in windows

netstat -ano | find ":8080"
  TCP    0.0.0.0:8080           0.0.0.0:0              LISTENING       26924
  TCP    [::]:8080              [::]:0                 LISTENING       26924

At right column you can see the process ID.