分享

通过WMI获得硬盘和CPU的物理序列号(VB.net)

 百眼通 2014-10-31

原文章 :http://blog.csdn.net/21aspnet/article/details/159124




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


  1. '获得硬盘序列号  
  2.        Dim cmicWmi As New System.Management.ManagementObjectSearcher("SELECT * FROM Win32_DiskDrive")  
  3.   
  4.        Dim Uint32 As UInt32  
  5.        For Each cmicWmiObj As ManagementObject In cmicWmi.Get  
  6.            Uint32 = cmicWmiObj("signature")  
  7.        Next  
  8.        TextBox1.Text = Uint32.ToString  


  1. '获得CPU序列号  
  2.     Dim Wmi As New System.Management.ManagementObjectSearcher("SELECT * FROM Win32_Processor")  
  3.   
  4.     Dim Uint32 As String  
  5.     For Each WmiObj As ManagementObject In Wmi.Get  
  6.         Uint32 = WmiObj("ProcessorId")  
  7.     Next  
  8.     TextBox1.Text = Uint32  


  1. '获得硬盘总容量  
  2.        Dim Wmi As New System.Management.ManagementObjectSearcher("SELECT * FROM Win32_DiskDrive")  
  3.   
  4.        Dim Uint64 As UInt64  
  5.        For Each WmiObj As ManagementObject In Wmi.Get  
  6.            Uint64 = WmiObj("size")  
  7.        Next  
  8.        TextBox1.Text = Uint64.ToString  




    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多