1 min readMay 4, 2020
How to see what’s running on localhost’s specific host in windows
I had a process to be run on localhost’s port 9999.
How do I know what is it uing command line
To how to find out what is running on localhost port
open command line and type
netstat -a -o | find “9999”
If the process is up it will give below output.