One thing I love about *nix is the which command which will tell me where a certain file is located if it is in my path.
Say I have patch.exe in my path somewhere, but I don't know where, here's a quick powershell script to find out:
foreach($p in $env:path.split(";")) { gci $p/patch.*}