Click here to Skip to main content
15,886,873 members
Articles / Desktop Programming / MFC
Article

System Information

Rate me:
Please Sign up or sign in to vote.
4.58/5 (55 votes)
19 Aug 20032 min read 471.1K   17.9K   154   131
Obtaining Information from Computer Hardware/Software

Screen shot of program

Introduction

This program shows you a very simple way to determine your PC hardware and software. It queries operating system for the following Hardware/Software:

  • Operating System Version (Thanks to PJ Naughter)
  • Computer Name
  • IP Address of Computer
  • User Name
  • Internet Explorer Version
  • Total RAM
  • Free Memory
  • Number of Hard Disk Drives
  • Hard Disk Total Space/Free Space/Used Space
  • CDROM Drives
  • Monitor Resolution
  • Color Depth
  • Number of CPUs (Thanks to Iain Chesworth)
  • CPU Speed
  • CPU Identifier
  • CPU Vendor Identifier
  • Operating System Folder
  • System Folder

Program structure

By clicking the combo box and changing it's item, selected item is determined and it's ID passed to Process member function of dialog. The Process member function takes ID of query and returns the proper result. Body of Process has a lot of code to prepares result and if any error has occurred, the error string will be returned.

How to use

Add the following header and implementation files to your project:
  • cup_info.h, cpu_info.cpp: For CPU Information like Speed, ID, Vendor ID,...
  • dtwinver.h, dtwinver.cpp: For Operating System Version (e.g. Build Number and Service Packs)
  • SysInfoDefs.h, SysInfoDefs.cpp: For General System Information like Total RAM, Number of Hard Disk Drives, Disk Space/Free Space/Used Space
  • SmartDef.h: For IDE S.M.A.R.T. commands to query from IDE hard disks that support SMART.

Functions

Below table shows all functions that are used to determine Hardware/Software of the computer.

CString DetermineIEVer();Determining Internet Explorer Version (Build Number)
CString QueryHardDisks();Calculating Number of Hard Disks and Number of Cylinders, Tracks per Cylinders, Sectors per Tracks, Bytes per Sector and Total Capacity for each Hard Disks
CString QueryDriveSpace();Calculating Drive Space/Free Space/Used Space of All Hard Drives
CString QueryCDDrive();Determining Number of CD Drives
CString QueryTotalRAM()Calculating Total Physical RAM (Random Access Memory)
CString QueryFreeRAM();Calculating Free Physical Memory
CString QueryUserName()User Name of current user
CString QueryComputerName();Computer Name
CString QueryCPUInfo();Number of CPU Installed on Mother Board
CString QueryCPUSpeed();Speed of each CPU
CString QueryCPUID();ID of each CPU
CString QueryCPUVendorID();ID of CPU Vendor
CString QueryResolution();Calculating Monitor Resolution in Pixel
CString QueryPixelDepth();Calculating Color Depth of any Pixel
CString QueryOS();Determining Operating System Version (Build Number) and it's Service Pack
CString QueryLocalIPAddress();Determining IP Address of Computer
CString QueryHDDSmartCommand();Query IDE hard disks that support SMART (Self-Monitoring Analysis & Reporting Technology).
CString QueryDirectory(char* sFolder,int iFolder);Determining Full Path of Specified Folder where sFolder is Folder Name and iFolder is Folder Shell ID Number
CString GetCommandError();Determining last occurred error

Requirements

  • Latest Platform SDK
  • Visual Studio 6.0 with service pack 5

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
CEO Solaris Electronics LLC
United Arab Emirates United Arab Emirates
I was born in Shiraz, a very beautiful famous city in Iran. I started programming when I was 12 years old with GWBASIC. Since now, I worked with various programming languages from Basic, Foxpro, C/C++, Visual Basic, Pascal to MATLAB and now Visual C++.
I graduated from Iran University of Science & Technology in Communication Eng., and now work as a system programmer for a telecommunication industry.
I wrote several programs and drivers for Synthesizers, Power Amplifiers, GPIB, GPS devices, Radio cards, Data Acquisition cards and so many related devices.
I'm author of several books like Learning C (primary and advanced), Learning Visual Basic, API application for VB, Teach Yourself Object Oriented Programming (OOP) and etc.
I'm winner of January, May, August 2003 and April 2005 best article of month competition, my articles are:


You can see list of my articles, by clicking here


Comments and Discussions

 
Questionget hardware information Pin
Member 1009957710-Jun-13 4:59
Member 1009957710-Jun-13 4:59 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 19:55
professionalManoj Kumar Choubey26-Feb-12 19:55 
GeneralExcuseme Help me! Pin
sincr61323-Apr-11 20:56
sincr61323-Apr-11 20:56 
GeneralMy vote of 1 Pin
Ali Saeedi12-May-10 1:38
Ali Saeedi12-May-10 1:38 
GeneralLittle mistake. Pin
Member 284418815-Jul-08 2:18
Member 284418815-Jul-08 2:18 
Hello,
Thank you very much for your source, it's really too nice.
There is a little mistake when select item in the combox, this is due to a forgoten "," in the initialisation of Query[NUM_OF_QUERIES][50] in SysInfoDefs.h after
"Hard Disk Features (S.M.A.R.T.)"

Best regards

Aramii.
QuestionClass CPUInfo do not support Chip intel ? Pin
To Quang Hiep5-May-08 3:18
To Quang Hiep5-May-08 3:18 
Questionhellp me plz Pin
lays18-Apr-08 23:13
lays18-Apr-08 23:13 
Questionhelp me Pin
lays14-Apr-08 20:32
lays14-Apr-08 20:32 
Questionhelp Pin
lays8-Apr-08 8:38
lays8-Apr-08 8:38 
AnswerRe: help [modified] Pin
vv3g20-May-10 17:28
vv3g20-May-10 17:28 
GeneralYour source is very valueble to me! Pin
Ingenious00128-Mar-07 1:39
Ingenious00128-Mar-07 1:39 
GeneralRe: Your source is very valueble to me! Pin
Abbas_Riazi30-Mar-07 0:57
professionalAbbas_Riazi30-Mar-07 0:57 
GeneralRe: Your source is very valueble to me! Pin
Ingenious0013-Apr-07 3:01
Ingenious0013-Apr-07 3:01 
GeneralRe: Your source is very valueble to me! Pin
Rarencjusz10-Jun-07 23:48
Rarencjusz10-Jun-07 23:48 
GeneralCreating a new partition Pin
Member 389306511-Mar-07 21:11
Member 389306511-Mar-07 21:11 
QuestionHard Disk's Physical Information Pin
Member 38930656-Mar-07 0:34
Member 38930656-Mar-07 0:34 
QuestionUnable to download the source Pin
Nanda Kishore_SGS29-Oct-06 22:43
Nanda Kishore_SGS29-Oct-06 22:43 
QuestionSCSI S.M.A.R.T. info? Pin
silikon25-Oct-06 5:39
silikon25-Oct-06 5:39 
QuestionAMD 64 Pin
Raul Simcic6-Aug-06 22:54
Raul Simcic6-Aug-06 22:54 
AnswerRe: AMD 64 Pin
Abbas_Riazi6-Aug-06 23:52
professionalAbbas_Riazi6-Aug-06 23:52 
GeneralERROR_INSUFFICIENT_BUFFER Pin
Randor 30-May-06 17:40
professional Randor 30-May-06 17:40 
QuestionCan you help me. Pin
terahez11-Apr-06 0:32
terahez11-Apr-06 0:32 
AnswerRe: Can you help me. Pin
Abbas_Riazi11-Apr-06 8:43
professionalAbbas_Riazi11-Apr-06 8:43 
GeneralRe: Can you help me. Pin
terahez11-Apr-06 22:12
terahez11-Apr-06 22:12 
GeneralRe: Can you help me. Pin
Abbas_Riazi11-Apr-06 22:22
professionalAbbas_Riazi11-Apr-06 22:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.