Friday, July 24, 2009

how to view open ports on local pc

The NETSTAT command will show you whatever ports are open or in use, but it is NOT a port scanning tool!

You can redirect it to a text file by adding >c:'openports.txt to the command, if you want to:
 netstat -an |find /i "listening" > c:'openports.txt

No comments:

Post a Comment