vote up 4 vote down star

like whether it is pentium or AMD etc.

flag

74% accept rate
Ok, so the link provided in the accepted answer is literally the first search result in Google! This question is now the second result... – Josh Dec 4 '08 at 12:50

3 Answers

vote up 6 vote down check

You can find a great Example for this here: http://www.codeproject.com/KB/system/GetHardwareInformation.aspx

But its basically in System.Management

link|flag
Thanks, that is quite useful. – suhair Dec 4 '08 at 12:13
vote up 2 vote down

The System.Management Namespace Provides access to a rich set of management information and management events about the system, devices, and applications instrumented to the Windows Management Instrumentation (WMI) infrastructure.

The Win32 Processor WMI class represents a device that can interpret a sequence of instructions on a computer running on a Windows operating system. On a multiprocessor computer, one instance of the Win32_Processor class exists for each processor. The class includes a Processor family type field, encoding things like AMD Opteron Processor Family.

An example of C# issuing WMI query is at the end of the page.

link|flag
vote up 2 vote down

Please note that this is from vs2003

 using(ManagementObjectSearcher win32Proc = new ManagementObjectSearcher("select * from Win32_Processor"),
    				  win32CompSys = new ManagementObjectSearcher("select * from Win32_ComputerSystem"),
    				  win32Memory = new ManagementObjectSearcher("select * from Win32_PhysicalMemory"))
    			{
    				foreach (ManagementObject obj in win32Proc.Get())
    				{
    					clockSpeed = obj["CurrentClockSpeed"].ToString();
    					procName = obj["Name"].ToString();
    					manufacturer = obj["Manufacturer"].ToString();
    					version = obj["Version"].ToString();


    				}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.