WMI獲取硬件信息封裝函數(shù)方法(聯(lián)想臺(tái)式機(jī)出廠編號(hào) CPUID BIOS序列號(hào) 硬盤信息 顯卡信息 MAC地址)
今天玩了一把WMI,查詢了一下電腦的硬件信息,感覺(jué)很多代碼都是可以提取出來(lái)的,就自己把那些公共部分提出出來(lái),以后如果要獲取某部分的硬件信息就不用寫一個(gè)一個(gè)的函數(shù),比如獲取MAC地址就寫一個(gè)獲取MAC地址的函數(shù),獲取CPU 信息就寫一個(gè)獲取CPU信息的函數(shù),太麻煩了
如下是函數(shù)代碼:
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"); //最大時(shí)鐘頻率
return retVal;
}
獲取BIOS信息,其中BIOS序列號(hào)就是聯(lián)想臺(tái)式機(jī)的出廠編號(hào),我看聯(lián)想的保修頁(yè)面里的自動(dòng)獲取主機(jī)編號(hào)應(yīng)該也是調(diào)用這個(gè)"Win32_BIOS"的 "SerialNumber
報(bào)修頁(yè)面網(wǎng)址: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序列號(hào)
+ identifier("Win32_BIOS", "ReleaseDate") //出廠日期
+ identifier("Win32_BIOS", "Version"); //版本號(hào)
}
獲取硬盤信息:
private static string diskId()
{
return identifier("Win32_DiskDrive", "Model") //模式
+ identifier("Win32_DiskDrive", "Manufacturer") //制造商
+ identifier("Win32_DiskDrive", "Signature") //簽名
+ identifier("Win32_DiskDrive", "TotalHeads"); //扇區(qū)頭
}
獲取顯卡信息:
private static string videoId()
{
return identifier("Win32_VideoController", "DriverVersion")
+ identifier("Win32_VideoController", "Name");
}
獲取網(wǎng)卡MAC地址信息:
private static string macId()
{
return identifier("Win32_NetworkAdapterConfiguration", "MACAddress", "IPEnabled");
}
- iOS如何獲取手機(jī)的Mac地址
- iOS、Mac OS X系統(tǒng)中編程實(shí)現(xiàn)漢字轉(zhuǎn)拼音的方法(超級(jí)簡(jiǎn)單)
- Nagios遠(yuǎn)程監(jiān)控安裝與配置詳解圖文
- iOS10 適配遠(yuǎn)程推送功能實(shí)現(xiàn)代碼
- iOS實(shí)現(xiàn)遠(yuǎn)程推送原理及過(guò)程
- iOS實(shí)現(xiàn)播放遠(yuǎn)程網(wǎng)絡(luò)音樂(lè)的核心技術(shù)點(diǎn)總結(jié)
- iOS10最新實(shí)現(xiàn)遠(yuǎn)程通知的開(kāi)發(fā)教程詳解
- iOS開(kāi)發(fā)之運(yùn)動(dòng)事件和遠(yuǎn)程控制
- iOS Remote Notification遠(yuǎn)程消息推送處理
- iOS-Mac遠(yuǎn)程連接控制Window
相關(guān)文章
C#算法設(shè)計(jì)之關(guān)于1000瓶水的問(wèn)題
這篇文章主要介紹了C#算法設(shè)計(jì)之關(guān)于1000瓶水的問(wèn)題,是一個(gè)比較經(jīng)典的算法問(wèn)題,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-01-01
學(xué)習(xí)C#靜態(tài)函數(shù)及變量的一個(gè)精典例子與代碼
學(xué)習(xí)C#靜態(tài)函數(shù)及變量的一個(gè)精典例子與代碼...2007-03-03

