联想台式计算机的设备序列号,WMI获取硬件信息封装函数方法(联想台式机出厂编号 CPUID BIOS序列号 硬盘信息 显卡信息 MAC地址)...

今天玩了一把WMI,查询了一下电脑的硬件信息,感觉很多代码都是可以提取出来的,就自己把那些公共部分提出出来,以后如果要获取某部分的硬件信息就不用写一个一个的函数,比如获取MAC地址就写一个获取MAC地址的函数,获取CPU 信息就写一个获取CPU信息的函数,太麻烦了

如下是函数代码:

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")

{

if (result == "")

{

try

{

result = mo[wmiProperty].ToString();

break;

}

catch

{

}

}

}

}

return result;

}

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)

{

if (result == "")

{

try

{

result = mo[wmiProperty].ToString();

break;

}

catch

{

}

}

}

return result;

}

获取CPUID

private static string cpuId()

{

string retVal = identifier("Win32_Processor", "UniqueId");  //CPUID

retVal += identifier("Win32_Processor", "ProcessorId");

retVal += identifier("Win32_Processor", "Name");  //处理器名称

retVal += identifier("Win32_Processor", "Manufacturer");  //处理器制造商

retVal +=identifier("Win32_Processor", "MaxClockSpeed");  //最大时钟频率

return retVal;

}

获取BIOS信息,其中BIOS序列号就是联想台式机的出厂编号,我看联想的保修页面里的自动获取主机编号应该也是调用这个"Win32_BIOS"的 "SerialNumber

报修页面网址:http://support1.lenovo.com.cn/lenovo/wsi/wsbx/lenovo/#minarepairInfo

//BIOS信息

private static string biosId()

{

return identifier("Win32_BIOS", "Manufacturer")          //BIOS制造商名称

+ identifier("Win32_BIOS", "SMBIOSBIOSVersion")  //

+ identifier("Win32_BIOS", "IdentificationCode") //

+ identifier("Win32_BIOS", "SerialNumber")       //BIOS序列号

+ identifier("Win32_BIOS", "ReleaseDate")        //出厂日期

+ identifier("Win32_BIOS", "Version");           //版本号

}

获取硬盘信息:

private static string diskId()

{

return identifier("Win32_DiskDrive", "Model")           //模式

+ identifier("Win32_DiskDrive", "Manufacturer") //制造商

+ identifier("Win32_DiskDrive", "Signature")    //签名

+ identifier("Win32_DiskDrive", "TotalHeads");  //扇区头

}

获取显卡信息:

private static string videoId()

{

return identifier("Win32_VideoController", "DriverVersion")

+ identifier("Win32_VideoController", "Name");

}

获取网卡MAC地址信息:

private static string macId()

{

return identifier("Win32_NetworkAdapterConfiguration", "MACAddress", "IPEnabled");

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值