سؤال

أحتاج في برنامجي لربط ترخيص معرف الأجهزة. حاولت استخدام WMI ، لكنها لا تزال بطيئة.

أحتاج ، على سبيل المثال ، وحدة المعالجة المركزية ، HDD ، والوحة الأم.

هل كانت مفيدة؟

المحلول

لمزيد من التفاصيل ، الرجوع إلى هذا الرابط

سوف يمنحك الرمز التالي معرف وحدة المعالجة المركزية:

مساحة الاسم المطلوبة System.Management

var mbs = new ManagementObjectSearcher("Select ProcessorId From Win32_processor");
ManagementObjectCollection mbsList = mbs.Get();
string id = "";
foreach (ManagementObject mo in mbsList)
{
    id = mo["ProcessorId"].ToString();
    break;
}

لمعرف القرص الثابت وتفاصيل معرف اللوحة الأم ، راجع هذا الرابط

لتسريع هذا الإجراء ، تأكد من عدم استخدامك SELECT *, ، ولكن فقط حدد ما تحتاجه حقًا. يستخدم SELECT * فقط أثناء التطوير عندما تحاول معرفة ما تحتاج إلى استخدامه ، لأن الاستعلام سيستغرق كثيراً أطول لإكمال.

نصائح أخرى

وصلت إلى هنا أبحث عن نفس الشيء ووجدت حلًا آخر. إذا كنت مهتمًا يا رفاق ، أشارك هذا الفصل:

using System;
using System.Management;
using System.Security.Cryptography;
using System.Security;
using System.Collections;
using System.Text;
namespace Security
{
    /// <summary>
    /// Generates a 16 byte Unique Identification code of a computer
    /// Example: 4876-8DB5-EE85-69D3-FE52-8CF7-395D-2EA9
    /// </summary>
    public class FingerPrint  
    {
        private static string fingerPrint = string.Empty;
        public static string Value()
        {
            if (string.IsNullOrEmpty(fingerPrint))
            {
                fingerPrint = GetHash("CPU >> " + cpuId() + "\nBIOS >> " + 
            biosId() + "\nBASE >> " + baseId() +
                            //"\nDISK >> "+ diskId() + "\nVIDEO >> " + 
            videoId() +"\nMAC >> "+ macId()
                                     );
            }
            return fingerPrint;
        }
        private static string GetHash(string s)
        {
            MD5 sec = new MD5CryptoServiceProvider();
            ASCIIEncoding enc = new ASCIIEncoding();
            byte[] bt = enc.GetBytes(s);
            return GetHexString(sec.ComputeHash(bt));
        }
        private static string GetHexString(byte[] bt)
        {
            string s = string.Empty;
            for (int i = 0; i < bt.Length; i++)
            {
                byte b = bt[i];
                int n, n1, n2;
                n = (int)b;
                n1 = n & 15;
                n2 = (n >> 4) & 15;
                if (n2 > 9)
                    s += ((char)(n2 - 10 + (int)'A')).ToString();
                else
                    s += n2.ToString();
                if (n1 > 9)
                    s += ((char)(n1 - 10 + (int)'A')).ToString();
                else
                    s += n1.ToString();
                if ((i + 1) != bt.Length && (i + 1) % 2 == 0) s += "-";
            }
            return s;
        }
        #region Original Device ID Getting Code
        //Return a hardware identifier
        private static string identifier
        (string wmiClass, string wmiProperty, string wmiMustBeTrue)
        {
            string result = "";
            System.Management.ManagementClass mc = 
        new System.Management.ManagementClass(wmiClass);
            System.Management.ManagementObjectCollection moc = mc.GetInstances();
            foreach (System.Management.ManagementObject mo in moc)
            {
                if (mo[wmiMustBeTrue].ToString() == "True")
                {
                    //Only get the first one
                    if (result == "")
                    {
                        try
                        {
                            result = mo[wmiProperty].ToString();
                            break;
                        }
                        catch
                        {
                        }
                    }
                }
            }
            return result;
        }
        //Return a hardware identifier
        private static string identifier(string wmiClass, string wmiProperty)
        {
            string result = "";
            System.Management.ManagementClass mc = 
        new System.Management.ManagementClass(wmiClass);
            System.Management.ManagementObjectCollection moc = mc.GetInstances();
            foreach (System.Management.ManagementObject mo in moc)
            {
                //Only get the first one
                if (result == "")
                {
                    try
                    {
                        result = mo[wmiProperty].ToString();
                        break;
                    }
                    catch
                    {
                    }
                }
            }
            return result;
        }
        private static string cpuId()
        {
            //Uses first CPU identifier available in order of preference
            //Don't get all identifiers, as it is very time consuming
            string retVal = identifier("Win32_Processor", "UniqueId");
            if (retVal == "") //If no UniqueID, use ProcessorID
            {
                retVal = identifier("Win32_Processor", "ProcessorId");
                if (retVal == "") //If no ProcessorId, use Name
                {
                    retVal = identifier("Win32_Processor", "Name");
                    if (retVal == "") //If no Name, use Manufacturer
                    {
                        retVal = identifier("Win32_Processor", "Manufacturer");
                    }
                    //Add clock speed for extra security
                    retVal += identifier("Win32_Processor", "MaxClockSpeed");
                }
            }
            return retVal;
        }
        //BIOS Identifier
        private static string biosId()
        {
            return identifier("Win32_BIOS", "Manufacturer")
            + identifier("Win32_BIOS", "SMBIOSBIOSVersion")
            + identifier("Win32_BIOS", "IdentificationCode")
            + identifier("Win32_BIOS", "SerialNumber")
            + identifier("Win32_BIOS", "ReleaseDate")
            + identifier("Win32_BIOS", "Version");
        }
        //Main physical hard drive ID
        private static string diskId()
        {
            return identifier("Win32_DiskDrive", "Model")
            + identifier("Win32_DiskDrive", "Manufacturer")
            + identifier("Win32_DiskDrive", "Signature")
            + identifier("Win32_DiskDrive", "TotalHeads");
        }
        //Motherboard ID
        private static string baseId()
        {
            return identifier("Win32_BaseBoard", "Model")
            + identifier("Win32_BaseBoard", "Manufacturer")
            + identifier("Win32_BaseBoard", "Name")
            + identifier("Win32_BaseBoard", "SerialNumber");
        }
        //Primary video controller ID
        private static string videoId()
        {
            return identifier("Win32_VideoController", "DriverVersion")
            + identifier("Win32_VideoController", "Name");
        }
        //First enabled network card ID
        private static string macId()
        {
            return identifier("Win32_NetworkAdapterConfiguration", 
                "MACAddress", "IPEnabled");
        }
        #endregion
    }
}

لن أحصل على أي رصيد لهذا لأنني وجدته هنالقد عملت بشكل أسرع مما توقعت بالنسبة لي. بدون بطاقة الرسومات ، حصلت Mac و Drive ID على المعرف الفريد في حوالي 2-3 ثوان. مع تلك المذكورة أعلاه ، حصلت عليه في حوالي 4-5 ثوان.

ملحوظة: إضافة إشارة إلى System.Management.

كان النهج التالي مستوحى من هذا الجواب إلى سؤال (أكثر عمومية).

النهج هو قراءة MachineGuid القيمة في مفتاح التسجيل HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography. يتم إنشاء هذه القيمة أثناء تثبيت نظام التشغيل.

هناك طرق قليلة حول تفرد معرف الأجهزة لكل جهاز باستخدام هذا النهج. تتمثل إحدى الطرق في تحرير قيمة التسجيل ، ولكن هذا قد يتسبب في مضاعفات جهاز المستخدم بعد ذلك. هناك طريقة أخرى تتمثل في استنساخ صورة محرك أقراص من شأنها نسخ MachineGuid القيمة.

ومع ذلك ، لا يوجد نهج مقاوم للاختراق وسيكون هذا بالتأكيد جيدًا بما يكفي للمستخدمين العاديين. على الجانب الإيجابي ، هذا النهج هو الأداء السريع وبسيط للتنفيذ.

public string GetMachineGuid()
{
   string location = @"SOFTWARE\Microsoft\Cryptography";
   string name = "MachineGuid";

   using (RegistryKey localMachineX64View = 
       RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry64))
   {
       using (RegistryKey rk = localMachineX64View.OpenSubKey(location))
       {
           if (rk == null)
               throw new KeyNotFoundException(
                   string.Format("Key Not Found: {0}", location));

           object machineGuid = rk.GetValue(name);
           if (machineGuid == null)
               throw new IndexOutOfRangeException(
                   string.Format("Index Not Found: {0}", name));

           return machineGuid.ToString();
       }
   }
}

هنا هو DLL الذي يظهر:
* معرف محرك الأقراص الثابت
* معرف التقسيم (الرقم التسلسلي للحجم)
* معرف وحدة المعالجة المركزية (معرف الأجهزة الفريد)
* بائع وحدة المعالجة المركزية
* سرعة تشغيل وحدة المعالجة المركزية
* سرعة نظرية وحدة المعالجة المركزية
* تحميل الذاكرة (إجمالي الذاكرة المستخدمة في النسبة المئوية (٪))
* إجمالي المادية (إجمالي الذاكرة المادية في البايتات)
* جدوى (ذاكرة فعلية تركت في بايت)
* إجمالي Pagefile (إجمالي ملف الصفحة بالبايت)
* Pagefile المتاح (ملف الصفحة المتبقي في Bytes)
* إجمالي الافتراضية (إجمالي الذاكرة الافتراضية في بايت)
* متوفرة افتراضية (تركت الذاكرة الافتراضية في بايت)
* BIOS التعريف الفريد رقم biosdate
* BIOS تحديد الهوية الفريدة
* BIOS التعريف الفريد numberBiosproductid
* BIOS التعريف الفريد numberbiosvideo

(تم الاستيلاء على النص من موقع الويب الأصلي)
إنه يعمل مع C#.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top