最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
VB.net获取CPU与硬盘物理序列号与容量的实例
时间:2022-06-25 05:33:25 编辑:袖梨 来源:一聚教程网
首先,引用System.Management;然后在代码中Imports System.Management;
以下功能主要依靠wmi实现
获得硬盘序列号
代码如下 | 复制代码 |
Dim cmicWmi As New System.Management.ManagementObjectSearcher("SELECT * FROM Win32_DiskDrive") Dim Uint32 As UInt32 For Each cmicWmiObj As ManagementObject In cmicWmi.Get Uint32 = cmicWmiObj("signature") Next TextBox1.Text = Uint32.ToString |
获得CPU序列号
代码如下 | 复制代码 |
Dim Wmi As New System.Management.ManagementObjectSearcher("SELECT * FROM Win32_Processor") |
获得硬盘总容量
代码如下 | 复制代码 |
Dim Wmi As New System.Management.ManagementObjectSearcher("SELECT * FROM Win32_DiskDrive") Dim Uint64 As UInt64 For Each WmiObj As ManagementObject In Wmi.Get Uint64 = WmiObj("size") Next TextBox1.Text = Uint64.ToString |
相关文章
- DNA币/EncrypGen是什么?DNA币上线交易所名单 05-09
- 逆水寒手游金明鱼痴任务完成路线规划 05-09
- 奇迹暖暖白羽诗篇套装怎么获取方式有哪些 05-09
- 归龙潮玉笛获得方式有哪些 05-09
- 无期迷途雾港诡影雾港诡影第二夜怎样 05-09
- 逆水寒手游易容丹如何正确使用 05-09