C# 获取计算机唯一标识

Wesley13
• 阅读 771
  1         private static string _sFingerPrint { get; set; }
  2 
  3         /// <summary>
  4         /// 计算机唯一标识
  5         /// </summary>
  6         public static string sFingerPrint
  7         {
  8             get
  9             {
 10                 if (string.IsNullOrEmpty(_sFingerPrint))
 11                 {
 12                     _sFingerPrint = GetHash("UUID >> " + UUID() + "\r\nCPU >> " + CpuId() + "\r\nBIOS >> " +
 13                     BiosId() + "\r\nBASE >> " + BaseId() + "\r\nDisk >> " + DiskId() + "\r\nVideo >> " +
 14                     VideoId() + "\r\nMAC >> " + MacId());
 15                 }
 16                 return _sFingerPrint;
 17             }
 18         }
 19 
 20         /// <summary>
 21         /// 获取硬件标识符
 22         /// </summary>
 23         /// <param name="wmiClass"></param>
 24         /// <param name="wmiProperty"></param>
 25         /// <param name="wmiMustBeTrue"></param>
 26         /// <returns></returns>
 27         private static string identifier(string wmiClass, string wmiProperty, string wmiMustBeTrue)
 28         {
 29             string result = "";
 30             System.Management.ManagementClass mc =
 31         new System.Management.ManagementClass(wmiClass);
 32             System.Management.ManagementObjectCollection moc = mc.GetInstances();
 33             foreach (System.Management.ManagementObject mo in moc)
 34             {
 35                 if (mo[wmiMustBeTrue].ToString() == "True")
 36                 {
 37                     //Only get the first one
 38                     if (result == "")
 39                     {
 40                         try
 41                         {
 42                             result = mo[wmiProperty].ToString();
 43                             break;
 44                         }
 45                         catch
 46                         {
 47                         }
 48                     }
 49                 }
 50             }
 51             return result;
 52         }
 53         /// <summary>
 54         /// 获取硬件标识符
 55         /// </summary>
 56         /// <param name="wmiClass"></param>
 57         /// <param name="wmiProperty"></param>
 58         /// <returns></returns>
 59         private static string identifier(string wmiClass, string wmiProperty)
 60         {
 61             string result = "";
 62             System.Management.ManagementClass mc =
 63         new System.Management.ManagementClass(wmiClass);
 64             System.Management.ManagementObjectCollection moc = mc.GetInstances();
 65             foreach (System.Management.ManagementObject mo in moc)
 66             {
 67                 //Only get the first one
 68                 if (result == "")
 69                 {
 70                     try
 71                     {
 72                         result = mo[wmiProperty].ToString();
 73                         break;
 74                     }
 75                     catch
 76                     {
 77                     }
 78                 }
 79             }
 80             return result;
 81         }
 82 
 83         /// <summary>
 84         /// 获取UUID
 85         /// </summary>
 86         /// <returns></returns>
 87         public static string UUID()
 88         {
 89             string code = null;
 90             SelectQuery query = new SelectQuery("select * from Win32_ComputerSystemProduct");
 91             using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(query))
 92             {
 93                 foreach (var item in searcher.Get())
 94                 {
 95                     using (item)
 96                         code = item["UUID"].ToString();
 97                 }
 98             }
 99             return code;
100         }
101 
102         /// <summary>
103         /// 获取CPUID
104         /// </summary>
105         /// <returns></returns>
106         public static string CpuId()
107         {
108             //Uses first CPU identifier available in order of preference
109             //Don't get all identifiers, as it is very time consuming
110             string retVal = identifier("Win32_Processor", "UniqueId");
111             if (retVal == "") //If no UniqueID, use ProcessorID
112             {
113                 retVal = identifier("Win32_Processor", "ProcessorId");
114                 if (retVal == "") //If no ProcessorId, use Name
115                 {
116                     retVal = identifier("Win32_Processor", "Name");
117                     if (retVal == "") //If no Name, use Manufacturer
118                     {
119                         retVal = identifier("Win32_Processor", "Manufacturer");
120                     }
121                     //Add clock speed for extra security
122                     retVal += identifier("Win32_Processor", "MaxClockSpeed");
123                 }
124             }
125             return retVal;
126         }
127         /// <summary>
128         /// 获取BIOSID
129         /// </summary>
130         /// <returns></returns>
131         public static string BiosId()
132         {
133             return identifier("Win32_BIOS", "Manufacturer")
134             + identifier("Win32_BIOS", "SMBIOSBIOSVersion")
135             + identifier("Win32_BIOS", "IdentificationCode")
136             + identifier("Win32_BIOS", "SerialNumber")
137             + identifier("Win32_BIOS", "ReleaseDate")
138             + identifier("Win32_BIOS", "Version");
139         }
140         /// <summary>
141         /// 获取硬盘ID
142         /// </summary>
143         /// <returns></returns>
144         public static string DiskId()
145         {
146             return identifier("Win32_DiskDrive", "Model")
147             + identifier("Win32_DiskDrive", "Manufacturer")
148             + identifier("Win32_DiskDrive", "Signature")
149             + identifier("Win32_DiskDrive", "TotalHeads");
150         }
151         /// <summary>
152         /// 获取主板ID
153         /// </summary>
154         /// <returns></returns>
155         public static string BaseId()
156         {
157             return identifier("Win32_BaseBoard", "Model")
158             + identifier("Win32_BaseBoard", "Manufacturer")
159             + identifier("Win32_BaseBoard", "Name")
160             + identifier("Win32_BaseBoard", "SerialNumber");
161         }
162         /// <summary>
163         /// 获取主视频控制器ID
164         /// </summary>
165         /// <returns></returns>
166         public static string VideoId()
167         {
168             return identifier("Win32_VideoController", "DriverVersion")
169             + identifier("Win32_VideoController", "Name");
170         }
171         /// <summary>
172         /// 获取网卡ID
173         /// </summary>
174         /// <returns></returns>
175         public static string MacId()
176         {
177             return identifier("Win32_NetworkAdapterConfiguration",
178                 "MACAddress", "IPEnabled");
179         }
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Easter79 Easter79
3年前
Twitter的分布式自增ID算法snowflake (Java版)
概述分布式系统中,有一些需要使用全局唯一ID的场景,这种时候为了防止ID冲突可以使用36位的UUID,但是UUID有一些缺点,首先他相对比较长,另外UUID一般是无序的。有些时候我们希望能使用一种简单一些的ID,并且希望ID能够按照时间有序生成。而twitter的snowflake解决了这种需求,最初Twitter把存储系统从MySQL迁移
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
为什么mysql不推荐使用雪花ID作为主键
作者:毛辰飞背景在mysql中设计表的时候,mysql官方推荐不要使用uuid或者不连续不重复的雪花id(long形且唯一),而是推荐连续自增的主键id,官方的推荐是auto_increment,那么为什么不建议采用uuid,使用uuid究
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这