The MVP suggested that you use the netstat command, and you balked at this.
if you open a command prompt (start, run, cmd.exe, ok), you will see a black
box.
if you type, " netstat -an " (without the quotes), and press return/enter,
you will see a list of numbers:
Proto Local Address Foreign Address State
TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1025 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1053 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1066 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1069 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1078 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1081 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1082 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1083 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1231 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1547 0.0.0.0:0 LISTENING
TCP 0.0.0.0:1548 0.0.0.0:0 LISTENING
TCP 0.0.0.0:5000 0.0.0.0:0 LISTENING
This is a partial list.
If your application requires that port 1186 be avilable, you can see from
the information above, that there is nothing already listening on that port
(IPAddress
ort). The port is free, and available for your application to
use.
Does this make sense now?
NuTs