WMI 하드웨어 정보 캡슐화 함수 및 Lenovo 데스크탑 출하 번호 지정 방법

18865 단어
오늘 WMI를 가지고 놀았는데 컴퓨터의 하드웨어 정보를 조회해 보니 많은 코드가 추출될 수 있을 것 같아서 스스로 그 공공 부분을 제기하고 나중에 얻으려면
어떤 부분의 하드웨어 정보는 하나의 함수를 쓰지 않아도 된다. 예를 들어 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

좋은 웹페이지 즐겨찾기