Unique computer ID

前端 未结 3 1196
悲&欢浪女
悲&欢浪女 2020-11-28 06:12

I\'m looking for a way to get unique computer ID.

According to this post I can\'t use processor ID for this purpose. Can I take motherboard ID? What is the best way

相关标签:
3条回答
  • 2020-11-28 06:26

    MAC address of the network adapter? Security identifier (SID) of the windows OS install? (assuming it's windows you're dealing with) Could you just generate a GUID for each PC?

    What exactly are you trying to achieve?

    0 讨论(0)
  • 2020-11-28 06:28

    The motherboard ID is a pretty unique identifier. Another option is to use the network cards MAC address, which are pretty much unique.

    0 讨论(0)
  • 2020-11-28 06:41

    Like you've said CPU Id wont be unique, however you can use it with another hardware identifier to create your own unique key.

    Reference assembly System.Management

    So, use this code to get the CPU ID:

    string cpuInfo = string.Empty;
    ManagementClass mc = new ManagementClass("win32_processor");
    ManagementObjectCollection moc = mc.GetInstances();
    
    foreach (ManagementObject mo in moc)
    {
         cpuInfo = mo.Properties["processorID"].Value.ToString();
         break;
    }
    

    Then use this code to get the HD ID:

    string drive = "C";
    ManagementObject dsk = new ManagementObject(
        @"win32_logicaldisk.deviceid=""" + drive + @":""");
    dsk.Get();
    string volumeSerial = dsk["VolumeSerialNumber"].ToString();
    

    Then, you can just combine these two serials to get a uniqueId for that machine:

    string uniqueId = cpuInfo + volumeSerial;
    

    Obviously, the more hardware components you get the IDs of, the greater the uniqueness becomes. However, the chances of the same machine having an identical CPU serial and Hard disk serial are already slim to none.

    0 讨论(0)
提交回复
热议问题