Archive for February, 2009

TCPView

Tuesday, February 17th, 2009

TCPView is a tool from Microsoft that lets you view what process owns what port. You can download it for free from http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx

  • Share/Bookmark

grep on windows?

Tuesday, February 17th, 2009

I was just fiddling on the Windows command prompt and much to my surprise that I can use “find” like how I use “grep” on Linux. For example, you want to filter lines that have the word LISTEN, just enter the command(s) below:

> netstat -an|find “LISTEN”

  • Share/Bookmark