You can get more information if you run the following command:
netstat -aon | find /i "listening" |find "port"
using the 'Find' command allows you to filter the results. find /i "listening"
will display only ports that are 'Listening'. Note, you need the /i
to ignore case, otherwise you would type find "LISTENING". | find "port"
will limit the results to only those containing the specific port number. Note, on this it will also filter in results that have the port number anywhere in the response string.