0vm/Simple-HWID-Checker — reverse-engineered prompt
Reverse engineered prompt
Build me a simple Windows C++ console tool that checks a computer’s hardware identity for licensing or security use. I want it to print detailed system identifiers like CPU, motherboard, disk drives, GPU, monitors, network adapters, BIOS, TPM, RAM, Windows version, computer name, user info, volume serials, Windows product ID, and install date.
It should create both individual readable IDs and hashed versions, then combine the stronger hardware values into one main hardware fingerprint, one software fingerprint, and one complete system HWID that I can copy and use in another app. Please use direct Windows hardware access where possible instead of relying only on easy to fake values. If you include WMIC style results, clearly label them as unreliable and only for comparison.
Make the output clean and easy to read in the terminal. Keep it as a single straightforward project that can be built on Windows, and look up current Windows API docs online if needed.
Want more depth? Deep Reverse