C#中获取cpu序列号,硬盘id,网卡mac地址

    有时需要在C#中获取计算机的一些硬件设备信息,如CPU序列号、硬盘ID等,.NET 提供的System.Management.ManagementClass是对设备管理的支持,其表示公共信息模型 (CIM) 管理类。管理类是一个 WMI 类,如 Win32_LogicalDisk 和 Win32_Process,前者表示磁盘驱动器,后者表示进程(如 Notepad.exe)。通过该类的成员,可以使用特定的 WMI 类路径访问 WMI 数据。有关更多信息,请参见“Windows Management Instrumentation”文档中的“Win32 Classes”(Win32 类),该文档位于 http://www.microsoft.com/china/msdn/library 上的 MSDN Library 中。 

    //获取cpu序列号  
    string cpuInfo = "";
    ManagementClass cimobject = new ManagementClass("Win32_Processor"); 
    ManagementObjectCollection moc = cimobject.GetInstances(); 
    foreach(ManagementObject mo in moc) 
    { 
     if(mo.Properties["ProcessorId"].Value != null)
      cpuInfo += mo.Properties["ProcessorId"].Value.ToString(); 
    } 
    result += cpuInfo;

    //获取硬盘ID 
    string HDid = ""; 
    ManagementClass cimobject1 = new ManagementClass("Win32_DiskDrive"); 
    ManagementObjectCollection moc1 = cimobject1.GetInstances(); 
    foreach(ManagementObject mo in moc1) 
    { 
     if(mo.Properties["Model"].Value != null)
      HDid += (string)mo.Properties["Model"].Value.ToString();  
    } 
    result += HDid;

    //获取网卡硬件地址     
    string MACAddress = "";
    ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration"); 
    ManagementObjectCollection moc2 = mc.GetInstances(); 
    foreach(ManagementObject mo in moc2) 
    { 
     if((bool)mo["IPEnabled"] == true && mo["MacAddress"] != null) 
      MACAddress += mo["MacAddress"].ToString(); 
     mo.Dispose(); 
    } 
    result += MACAddress;

你可能感兴趣的:(mac)