DLL Finder is a simple C++ program that recursively searches for DLL files on all available drives and writes the results to a file.
- Searches for DLL files on all logical drives.
- Writes the list of found DLL files to a file named "dlls.txt".
- Provides progress updates during the search.
- Compile the program on a Windows system.
- Run the compiled executable.
- The program will scan all drives, find DLL files, and write the results to "dlls.txt".
- View the results in the generated "dlls.txt" file.
DllFinder.exe
- Windows API
Compile the program using a C++ compiler. For example:
g++ -std=c++2a -Wall -O2 -march=x86-64 -fno-rtti DllFinder.cpp -o DllFinder.exe -s -static
This program is Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.