Windows CLI netstat reminder
as seen on xmodx.
netstat -an | find /i “listening” – grep with string
netstat -ao | find /i “listening” – lists owning process ID associated with connection
if “find /i” doesn’t work try “findstr”
as seen on xmodx.
netstat -an | find /i “listening” – grep with string
netstat -ao | find /i “listening” – lists owning process ID associated with connection
if “find /i” doesn’t work try “findstr”
Leave a Reply