find service using port 80 code example
Example 1: find which service is using port
netstat -aon | findstr<port_number>
tasklist | findstr 9260
Example 2: which service using port 80 command
netstat -aon | findstr :80
netstat -aon | findstr<port_number>
tasklist | findstr 9260
netstat -aon | findstr :80