Using RegDevelop to Create your own Hardware and System Information Program
Gathering of computer hardware and system information about the central processing unit (CPU), Memory Card (RAM), BIOS, motherboard, and other hardware peripherals are usually needed in many cases for hardware verification, driver installation and driver update. Here’s a guide to create your own program using Regdevelop. All you need are commands use to get the hardware information. How-to-do Open the program and drag the button control and start configuring the settings. Sample Settings ---------------------------------------------------------------- Caption CPU Current Voltage and Caption StartProcess cmd /k wmic cpu get caption,currentvoltage ---------------------------------------------------------------- Caption System Information Tool StartProcess msinfo32 ---------------------------------------------------------------- Caption Current Clock Speed StartProcess wmic cpu get CurrentClockSpeed,Ma...