WMI 하드웨어 정보 캡슐화 함수 및 Lenovo 데스크탑 출하 번호 지정 방법
어떤 부분의 하드웨어 정보는 하나의 함수를 쓰지 않아도 된다. 예를 들어 MAC 주소를 얻으면 MAC 주소를 얻는 함수를 쓰고 CPU 정보를 얻으면 CPU 정보를 얻는 함수를 쓴다.
함수, 너무 귀찮아요.
함수 코드는 다음과 같습니다.
1 private static string identifier(string wmiClass, string wmiProperty, string wmiMustBeTrue)
2 {
3 string result = "";
4 System.Management.ManagementClass mc = new System.Management.ManagementClass(wmiClass);
5 System.Management.ManagementObjectCollection moc = mc.GetInstances();
6 foreach (System.Management.ManagementObject mo in moc)
7 {
8 if (mo[wmiMustBeTrue].ToString() == "True")
9 {
10 if (result == "")
11 {
12 try
13 {
14 result = mo[wmiProperty].ToString();
15 break;
16 }
17 catch
18 {
19 }
20 }
21
22 }
23 }
24 return result;
25 }
26
27
28 private static string identifier(string wmiClass, string wmiProperty)
29 {
30 string result = "";
31 System.Management.ManagementClass mc = new System.Management.ManagementClass(wmiClass);
32 System.Management.ManagementObjectCollection moc = mc.GetInstances();
33 foreach (System.Management.ManagementObject mo in moc)
34 {
35 if (result == "")
36 {
37 try
38 {
39 result = mo[wmiProperty].ToString();
40 break;
41 }
42 catch
43 {
44 }
45 }
46
47 }
48 return result;
49 }
CPUID 가져오기
1 private static string cpuId()
2 {
3 string retVal = identifier("Win32_Processor", "UniqueId"); //CPUID
4 retVal += identifier("Win32_Processor", "ProcessorId");
5 retVal += identifier("Win32_Processor", "Name"); //
6 retVal += identifier("Win32_Processor", "Manufacturer"); //
7 retVal +=identifier("Win32_Processor", "MaxClockSpeed"); //
8 return retVal;
9 }
BIOS 정보를 얻습니다. 그 중에서 BIOS 일련 번호는 Lenovo 데스크탑의 출하 번호입니다. 제가 보기에 Lenovo의 보증 수리 페이지에서 자동으로 호스트 번호를 얻는 것도 호출될 것 같습니다.
이 "Win32 BIOS"의 "SerialNumber"
수리 신청 페이지 주소:http://support1.lenovo.com.cn/lenovo/wsi/wsbx/lenovo/#minarepairInfo
1 //BIOS
2 private static string biosId()
3 {
4 return identifier("Win32_BIOS", "Manufacturer") //BIOS
5 + identifier("Win32_BIOS", "SMBIOSBIOSVersion") //
6 + identifier("Win32_BIOS", "IdentificationCode") //
7 + identifier("Win32_BIOS", "SerialNumber") //BIOS
8 + identifier("Win32_BIOS", "ReleaseDate") //
9 + identifier("Win32_BIOS", "Version"); //
10 }
하드 드라이브 정보 얻기
1 private static string diskId()
2 {
3 return identifier("Win32_DiskDrive", "Model") //
4 + identifier("Win32_DiskDrive", "Manufacturer") //
5 + identifier("Win32_DiskDrive", "Signature") //
6 + identifier("Win32_DiskDrive", "TotalHeads"); //
7 }
마더보드 정보를 보려면 다음과 같이 하십시오.
1 private static string baseId()
2 {
3 return identifier("Win32_BaseBoard", "Model")
4 + identifier("Win32_BaseBoard", "Manufacturer")
5 + identifier("Win32_BaseBoard", "Name")
6 + identifier("Win32_BaseBoard", "SerialNumber");
7 }
비디오 카드 정보를 보려면 다음과 같이 하십시오.
1 private static string videoId()
2 {
3 return identifier("Win32_VideoController", "DriverVersion")
4 + identifier("Win32_VideoController", "Name");
5 }
NIC MAC 주소 정보를 보려면:
1 private static string macId()
2 {
3 return identifier("Win32_NetworkAdapterConfiguration", "MACAddress", "IPEnabled");
4 }
만약 무슨 잘못이 있으면, 모두가 벽돌을 두드리는 것을 환영합니다!!
전재 대상:https://www.cnblogs.com/lyhabc/archive/2012/04/20/2458675.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.