First, open up CMD. To do this, the quickest way is to open up Start -> Run... and type in "cmd" without quotes.
Then, type in the following command:
Code: Select all
cd \
If you want to search your whole drive, leave it at the drive directory.
If you want to search a certain folder and its subdirectories, navigate to the desired directory using the cd command.
Some help:
cd <folder> - Brings you to the directory <folder>. e.g.: "cd webcam photos" or "cd webcam photos\photoshop"
cd .. - Brings you one level up.
cd \ - Brings you to the drive directory.
When you reach the directory you want to search in, type "dir /s <terms>", where <terms> is the term you want to search for. This can be a full file name, or a file name with fillers (asterisks).
Code: Select all
dir /s glob_mod.png
Code: Select all
dir /s *art*.jpg
Code: Select all
dir /s camera.*
Code: Select all
dir /s *.gif
This is much faster and more powerful than the Windows search.
The only downside is that the search doesn't continue if you minimize the window.
Good luck!
