To find ports status on windows, there is a default Windows GUI - Resource Monitor
or you could use netstat
via command prompt.
Default Windows GUI - Resource Monitor
This is the most convenient method to find port status, there are two ways to open this GUI :
- Type
resmon
in command prompt then naviagate toNetwork > Listening Ports
Ctrl+Shift+Esc to open Windows Task Manager > Performance > Resource Monitor > Network > Listening Ports
Netstat
Open command prompt, type netstat /?
to see its documentation, netstat -abon
to list all port-proccess mapping
1 | C:\Windows\System32>netstat -abon | findstr "8080" |
Reference
Stackoverflow - How can you find out which process is listening on a port on Windows?