I found good-ole 'dir' was the man for the job.
c:\ dir c:\ *.exe /s
This command will recursively search from C: for files matching '*.exe'.
That'll do donkey, that'll do.
Random thoughts from the 'Fat, Slow Kid'. I am a software engineer by profession, the majority of my thoughts will concern technology and my profession.
c:\ dir c:\ *.exe /s
# apt-get install wmaker
$ echo "exec wmaker" >> ~/.xsession
$ echo "exec wmaker" >> ~/.xinitrc
wmic process get WorkingSetSize,Caption /format:csv >> c:\resources.log
mkisofs -o MyImage.iso -J dirName
cdrecord -v dev=X,X,X MyImage.iso
cdrecord --scanbus
mount -o loop MyIsoImage.iso /mnt/iso

$ ffmpeg -i source.avi /tmp/output.avi /tmp/output.mpg
$ ffmpeg -r 15 -s 352x288 -f video4linux -i /dev/video0 /tmp/output.avi /tmp/output.mpg
$ mkfifo /tmp/vidPipe
$ ffmpeg -y -f video4linux -r 15 -s 352x288 -i /dev/video0 -f avi -vcodec msmpeg4 /tmp/vidPipe /tmp/output.avi
$ mplayer /tmp/vidPipe
$ mplayer -fps 20 -tv driver=v4l:width=352:height=288:device=/dev/video0:outfmt=bgr24 tv://