Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.31 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.31 KB

DLL Finder - A Simple C++ Program for Finding DLL Files

DLL Finder is a simple C++ program that recursively searches for DLL files on all available drives and writes the results to a file.

Features

  • 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.

How to Use

  1. Compile the program on a Windows system.
  2. Run the compiled executable.
  3. The program will scan all drives, find DLL files, and write the results to "dlls.txt".
  4. View the results in the generated "dlls.txt" file.

Usage Example

DllFinder.exe

Dependencies

  • Windows API

Compilation

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

License

GNU AGPLv3 Image

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.