windows check port 8080 used code example
Example 1: how to check what is running in port 8080
netstat -a -n -o | find "8080
Example 2: check ports in use windows 8080
netstat -aon | findstr 8080
tasklist | findstr <PID>
netstat -a -n -o | find "8080
netstat -aon | findstr 8080
tasklist | findstr <PID>