zoukankan      html  css  js  c++  java
  • 通过WMI获得硬盘和CPU的物理序列号

    ''获得硬盘序列号 

    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 Uint32 As String

    For Each WmiObj As ManagementObject In Wmi.Get

    Uint32 
    = WmiObj("ProcessorId")

    Next

    TextBox1.Text 
    = Uint32

     

    ''获得硬盘总容量

    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

    首先,引用System.Management;然后在代码中Imports System.Management;

    申明

    非源创博文中的内容均收集自网上,若有侵权之处,请及时联络,我会在第一时间内删除.再次说声抱歉!!!

    博文欢迎转载,但请给出原文连接。

  • 相关阅读:
    HDU 1017—A Mathematical Curiosity
    N !
    L
    J
    Danganronpa
    A water problem
    hdu 5461 Largest Point
    India and China Origins hdu 5652 (BFS+二分)
    D (多校训练三) poj1919 (二分)
    Discovering Gold lightoj 1030 (dp+期望)
  • 原文地址:https://www.cnblogs.com/Athrun/p/824512.html
Copyright © 2011-2022 走看看