**Windows-Command-Enumerator** is a lightweight, native C utility designed for Windows that systematically catalogs all available command-line tools accessible to the user. Built with pure C and the Win32 API, it distinguishes between **Internal Commands** (60+ built-in `cmd.exe` operations like `dir`, `copy`, `echo`) and **External Commands** (1,000+ executable files in `%SystemRoot%\System32`). The application leverages `GetSystemDirectory()` and `FindFirstFile()/FindNextFile()` APIs to dynamically scan system directories, filtering `.exe`/`.com` binaries while skipping subdirectories. Output is color-coded via `SetConsoleTextAttribute()`—cyan for internal commands, white for external—with aligned column formatting for enhanced readability. Key features include zero external dependencies, sub-second execution on modern hardware, and compatibility with Windows XP through 11 (x86/x64). The tool requires no installation or elevated privileges, making it ideal for system administrators, developers, and security researchers needing a rapid inventory of core OS utilities. Its static internal command list and focused System32 scope ensure deterministic, reproducible results without PATH variable interference. With strict buffer management, explicit error handling, and a compact ~30 KB binary, Windows-Command-Enumerator exemplifies efficient native Windows programming. Licensed under MIT, it offers complete transparency for educational use, customization, or integration into larger diagnostic workflows. Whether auditing available tools, scripting environment validation, or learning Win32 file enumeration, this utility delivers reliable, offline-capable command discovery with minimal overhead. 🔍💻⚙️
Advanced CLI 3D Modeling Studio