Just a quick tip. I’ve always complained that Windows doesn’t have the grep command but you can use the Windows find command the same way.
For example, in Linux you can do:
$ cat /etc/services | grep “http”
The equivalent in Windows would be:
c:\> type \Windows\system32\drivers\etc\services | find “http”
Try it.