I need to search my drive for about 200 passwords that could possibly be on my drive. Doing this one at a time is time consuming. I would like to find a tool that can accept a file, or a list of terms to incrementally search on.
Does anyone have a suggestion for a hard Drive search tool, that can use a file (List) of terms to search on?
43 Views Asked by DumpsterJuice At
1
There are 1 best solutions below
Related Questions in FINDINFILES
- Bytes position of a FindInFiles search in vb.Net
- Emeditor pro Find in files to find multiple files
- Visual Studio "Find in Files" unable to find matches in solution
- How can I exclude these folders and files when searching a very large Visual Studio project?
- lua match everything after a tag in a string
- Apply multiple regular expressions to Visual Studio's "Find in Files"
- "Find in files" in Visual Studio 2017 does not work
- How can I make search in files to be triggered on keyboard input in Visual Studio Code?
- Visual Studio 2017 "Find In Files" - Window does not display
- Search in All Open Documents includes other files at times
- Is the method filesystem.findinfiles available to ".xlsx" file ?
- Identifying list of xlsx files from the cloud (google drive)
- Visual Studio Code find selected text in files
- Changing Specific attribute
- Visual Studio 2013 include logical or in "find in files" (updated for VS2017)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Try using grep for Windows:
http://gnuwin32.sourceforge.net/packages/grep.htm
The command-line argument
--file=<file>tells grep to look inside<file>for the strings to match. Full documentation here.