Answers for "windows check port 8080 used"

2

how to check what is running in port 8080

netstat -a -n -o | find "8080
Posted by: Guest on August-24-2020
1

check ports in use windows 8080

netstat -aon | findstr 8080 
tasklist | findstr <PID>
Posted by: Guest on March-01-2021

Code answers related to "windows check port 8080 used"

Browse Popular Code Answers by Language