Retrieve the CPU Type and Speed from the Registry
using System; using Microsoft.Win32; class Class1 { static void Main(string[] args) { RegistryKey RegKey = Registry.LocalMachine; RegKey = RegKey.OpenSubKey("HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0"); Object cpuSpeed = RegKey.GetValue("~MHz"); Object cpuType = RegKey.GetValue("VendorIdentifier"); Console.WriteLine("You have a {0} running at {1} MHz.",cpuType,cpuSpeed); } }
1. | Save value to registery | ||
2. | Read value from registry | ||
3. | Write a Text and DWord Value to the Registry | ||
4. | Enumerating Registry Keys | ||
5. | Get registry value from LocalMachine key |