Listening Ports
Find listening ports on a machine / server
netstat - NA
or for a specific port
net stat -NA | find":80"
":any port"
Who is listening? Use this syntax: netstat -an |find /i "listening"
Save who is listening to a text file: netstat -an |find /i "listening" > c:\openports.txt
Who is established? Use this syntax: netstat -an |find /i "established"
