11 Kasım 2011 Cuma

C# ile BIOS Bilgilerine Ulaşmak

bios_chipİlgili metodu aşağıda bulabilirsiniz.

public Hashtable GetBIOSInformation()
{
    Hashtable bilgiler = new Hashtable();
    ManagementObjectSearcher mos = new ManagementObjectSearcher("SELECT * FROM Win32_BIOS");
    ManagementObjectCollection moc = mos.Get();

    foreach (ManagementObject mo in moc)
    {
       bilgiler.Add("Name",mo.Properties["Name"].Value.ToString());
       bilgiler.Add("SerialNumber",mo.Properties["SerialNumber"].Value.ToString());
       bilgiler.Add("BIOSVersion",mo.Properties["SMBIOSBIOSVersion"].Value.ToString());
    }

    return bilgiler;
}

Hiç yorum yok: