how to check what is running on port 80 code example
Example 1: how to check what is running in port 8080
netstat -a -n -o | find "8080
Example 2: what uses port 80
netstat -aon | findstr :80
netstat -a -n -o | find "8080
netstat -aon | findstr :80