Here is my second post on a multi-part test. OK so to give you something useful. Have you checked out windows powershell?
http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx
I think using get-childitem to search your folders is pretty cool. You can even format the results. Here is a sample to query your c drive for any mp3's.
get-childitem -r c:\ -filter *.mp3 | format-list
You can substitute any path for the c:\. You can also use \\mypc\share or a mapped drive. You can also search your environment variables and the registry using this method. I used a similar query to look for duplicated movie files on my media drive. I am itunes paranoid because you cannot re-download them. The command line is a little bit more complex, but it will demostrate the use of select and where commandlets. I will post that command line as soon as I find my notes.
Code Happy,
Bill