现在的位置: 首页 > 综合 > 正文

获得硬件信息的有关文章

2013年07月13日 ⁄ 综合 ⁄ 共 27175字 ⁄ 字号 评论关闭

要验证用户是否合法,一个方法是获取用户的硬件信息。如果同一个SerialNumber有多个不同硬件用户使用,一般就可以kill掉这个SerialNumber了。

VB.NET中得到计算机硬件信息
作者:孟宪会 出自:【孟宪会之精彩世界】 发布日期:2003年7月25日 5点30分58秒

本文汇集了在.NET中得到计算机硬件信息的一些功能。

得到显示器分辨率

Dim X As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width Dim Y As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height MsgBox("您的显示器分辨率是:" &amp; X &amp; " X " &amp; Y) 得到特殊文件夹的路径 '"Desktop"桌面文件夹路径 MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)) '"Favorites"收藏夹路径 MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.Favorites)) '"Application Data"路径 MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)) '通用写法 'Dim SPEC As String = Environment.GetFolderPath(Environment.SpecialFolder.XXXXXXX) 'XXXXXXX是特殊文件夹的名字 得到操作系统版本信息 MsgBox(Environment.OSVersion.ToString) 得到当前登录的用户名 MsgBox(Environment.UserName) 得到当前应用程序的路径 MsgBox(Environment.CurrentDirectory) 打开和关闭CD-ROM '先新建模块 Module mciAPIModule Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" _ (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, _ ByVal uReturnLength As Integer, ByVal hwndCallback As Integer) As Integer End Module '打开CD-ROM Dim lRet As Long lRet = mciSendString("set cdAudio door open", 0&amp;, 0, 0) '关闭CD-ROM Dim lRet As Long lRet = mciSendString("set cdAudio door Closed", 0&amp;, 0, 0) '更多请参见 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/mmcmdstr_8eyc.asp 得到计算机IP和计算机全名 Dim MYIP As System.Net.IPHostEntry = System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName) MsgBox("您的IP地址:" &amp; (MYIP.AddressList.GetValue(0).ToString)) MsgBox("您的计算机全名:" &amp; (MYIP.HostName.ToString)) 使用win32_operatingSystem (wmi Class)得到计算机信息 '添加ListBox在Form1_Load事件里,并引用system.Managment Dim opSearch As New ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem") Dim opInfo As ManagementObject For Each opInfo In opSearch.Get() ListBox1.Items.Add("Name: " &amp; opInfo("name").ToString()) ListBox1.Items.Add("Version: " &amp; opInfo("version").ToString()) ListBox1.Items.Add("Manufacturer: " &amp; opInfo("manufacturer").ToString()) ListBox1.Items.Add("Computer name: " &amp; opInfo("csname").ToString()) ListBox1.Items.Add("Windows Directory: " &amp; opInfo("windowsdirectory").ToString()) Next 列出计算机安装的全部字体,并添加到ListBox '新建Form并添加ListBox和Button Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim fntCollection As InstalledFontCollection = New InstalledFontCollection() Dim fntFamily() As FontFamily fntFamily = fntCollection.Families ListBox1.Items.Clear() Dim i As Integer = 0 For i = 0 To fntFamily.Length - 1 ListBox1.Items.Add(fntFamily(i).Name) Next End Sub 使用Win32_Processor列出处理器的信息 Imports System.Management Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows 窗体设计器生成的代码 " Public Sub New() MyBase.New() '该调用是 Windows 窗体设计器所必需的。 InitializeComponent() '在 InitializeComponent() 调用之后添加任何初始化 End Sub '窗体重写 dispose 以清理组件列表。 Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub 'Windows 窗体设计器所必需的 Private components As System.ComponentModel.IContainer '注意: 以下过程是 Windows 窗体设计器所必需的 '可以使用 Windows 窗体设计器修改此过程。 '不要使用代码编辑器修改它。 Friend WithEvents ListBox1 As System.Windows.Forms.ListBox Friend WithEvents Button1 As System.Windows.Forms.Button <system.diagnostics.debuggerstepthrough> Private Sub InitializeComponent() Me.ListBox1 = New System.Windows.Forms.ListBox Me.Button1 = New System.Windows.Forms.Button Me.SuspendLayout() ' 'ListBox1 ' Me.ListBox1.Location = New System.Drawing.Point(8, 8) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(280, 186) Me.ListBox1.TabIndex = 0 ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(56, 208) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(168, 32) Me.Button1.TabIndex = 1 Me.Button1.Text = "装载计算机处理器信息" ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(296, 254) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button1, Me.ListBox1}) Me.Text = "计算机处理器信息" Me.ResumeLayout(False) End Sub #End Region Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _ Handles Button1.Click Dim ProcQuery As New SelectQuery("Win32_Processor") Dim ProcSearch As New ManagementObjectSearcher(ProcQuery) Dim ProcInfo As ManagementObject For Each ProcInfo In ProcSearch.Get() Call processorfamily(ProcInfo("Family").ToString) ListBox1.Items.Add("Description: " &amp; ProcInfo("Description").ToString()) ListBox1.Items.Add("caption: " &amp; ProcInfo("caption").ToString()) ListBox1.Items.Add("Architecture: " &amp; ProcInfo("Architecture").ToString()) Call processortype(ProcInfo("ProcessorType").ToString()) Call CpuStat(ProcInfo("CpuStatus").ToString) ListBox1.Items.Add("MaxClockSpeed: " &amp; ProcInfo("MaxClockSpeed").ToString() &amp; "MHZ") ListBox1.Items.Add("L2CacheSpeed: " &amp; ProcInfo("L2CacheSpeed").ToString() &amp; "MHZ") ListBox1.Items.Add("ExtClock: " &amp; ProcInfo("L2CacheSpeed").ToString() &amp; "MHZ") ListBox1.Items.Add("ProcessorId: " &amp; ProcInfo("ProcessorId").ToString()) ListBox1.Items.Add("AddressWidth: " &amp; ProcInfo("AddressWidth").ToString() &amp; "Bits") ListBox1.Items.Add("DataWidth: " &amp; ProcInfo("DataWidth").ToString() &amp; "Bits") ListBox1.Items.Add("Version: " &amp; ProcInfo("Version").ToString()) ListBox1.Items.Add("ExtClock: " &amp; ProcInfo("ExtClock").ToString() &amp; "MHZ") Next End Sub Function processorfamily(ByVal procssfam) Dim processtype Select Case procssfam Case 1 processtype = "Other" Case 2 processtype = "Unknown " Case 3 processtype = "8086 " Case 4 processtype = "80286 " Case 5 processtype = "80386 " Case 6 processtype = "80486 " Case 7 processtype = "8087 " Case 8 processtype = "80287 " Case 9 processtype = "80387 " Case 10 processtype = "80487 " Case 11 processtype = "Pentium brand " Case 12 processtype = "Pentium Pro " Case 13 processtype = "Pentium II " Case 14 processtype = "Pentium processor with MMX technology " Case 15 processtype = "Celeron " Case 16 processtype = "Pentium II Xeon " Case 17 processtype = "Pentium III " Case 18 processtype = "M1 Family " Case 19 processtype = "M2 Family " Case 24 processtype = "K5 Family " Case 25 processtype = "K6 Family " Case 26 processtype = "K6-2 " Case 27 processtype = "K6-3 " Case 28 processtype = "AMD Athlon Processor Family " Case 29 processtype = "AMD Duron Processor " Case 30 processtype = "AMD2900 Family " Case 31 processtype = "K6-2+ " Case 32 processtype = "Power PC Family " Case 33 processtype = "Power PC 601 " Case 34 processtype = "Power PC 603 " Case 35 processtype = "Power PC 603+ " Case 36 processtype = "Power PC 604 " Case 37 processtype = "Power PC 620 " Case 38 processtype = "Power PC X704 " Case 39 processtype = "Power PC 750 " Case 48 processtype = "Alpha Family " Case 49 processtype = "Alpha 21064 " Case 50 processtype = "Alpha 21066 " Case 51 processtype = "Alpha 21164 " Case 52 processtype = "Alpha 21164PC " Case 53 processtype = "Alpha 21164a " Case 54 processtype = "Alpha 21264 " Case 55 processtype = "Alpha 21364 " Case 64 processtype = "MIPS Family " Case 65 processtype = "MIPS R4000 " Case 66 processtype = "MIPS R4200 " Case 67 processtype = "MIPS R4400 " Case 68 processtype = "MIPS R4600 " Case 69 processtype = "MIPS R10000 " Case 80 processtype = "SPARC Family " Case 81 processtype = "SuperSPARC " Case 82 processtype = "microSPARC II " Case 83 processtype = "microSPARC IIep " Case 84 processtype = "UltraSPARC " Case 85 processtype = "UltraSPARC II " Case 86 processtype = "UltraSPARC IIi " Case 87 processtype = "UltraSPARC III " Case 88 processtype = "UltraSPARC IIIi " Case 96 processtype = "68040 " Case 97 processtype = "68xxx Family " Case 98 processtype = "68000 " Case 99 processtype = "68010 " Case 100 processtype = "68020 " Case 101 processtype = "68030 " Case 112 processtype = "Hobbit Family " Case 120 processtype = "Crusoe TM5000 Family " Case 121 processtype = "Crusoe TM3000 Family " Case 128 processtype = "Weitek " Case 130 processtype = "Itanium Processor " Case 144 processtype = "PA-RISC Family " Case 145 processtype = "PA-RISC 8500 " Case 146 processtype = "PA-RISC 8000 " Case 147 processtype = "PA-RISC 7300LC " Case 148 processtype = "PA-RISC 7200 " Case 149 processtype = "PA-RISC 7100LC " Case 150 processtype = "PA-RISC 7100 " Case 160 processtype = "V30 Family " Case 176 processtype = "Pentium III Xeon " Case 177 processtype = "Pentium III Processor with Intel SpeedStep Technology " Case 178 processtype = "Pentium 4 " Case 179 processtype = "Intel Xeon " Case 180 processtype = "AS400 Family " Case 181 processtype = "Intel Xeon processor MP " Case 182 processtype = "AMD AthlonXP Family " Case 183 processtype = "AMD AthlonMP Family " Case 184 processtype = "Intel Itanium 2 " Case 185 processtype = "AMD Opteron Family " Case 190 processtype = "K7 " Case 200 processtype = "IBM390 Family " Case 201 processtype = "G4 " Case 202 processtype = "G5 " Case 250 processtype = "i860 " Case 251 processtype = "i960 " Case 260 processtype = "SH-3 " Case 261 processtype = "SH-4 " Case 280 processtype = "ARM " Case 281 processtype = "StrongARM " Case 300 processtype = "6x86 " Case 301 processtype = "MediaGX " Case 302 processtype = "MII " Case 320 processtype = "WinChip " Case 350 processtype = "DSP " Case 500 processtype = "Video Processor " End Select ListBox1.Items.Add("Family: " &amp; processtype) End Function Function CpuStat(ByVal CpuStNUM) Dim stat Select Case CpuStNUM Case 0 stat = "Unknown " Case 1 stat = "CPU Enabled " Case 2 stat = "CPU Disabled by User via BIOS Setup " Case 3 stat = "CPU Disabled By BIOS (POST Error) " Case 4 stat = "CPU is Idle " Case 5 stat = "Reserved " Case 6 stat = "Reserved " Case 7 stat = "Other " End Select ListBox1.Items.Add("CpuStatus: " &amp; stat) End Function Function processortype(ByVal proctypenum) Dim proctype Select Case proctypenum Case 1 proctype = "Other " Case 2 proctype = "Unknown " Case 3 proctype = "Central Processor " Case 4 proctype = "Math Processor " Case 5 proctype = "DSP Processor " Case 6 proctype = "Video Processor " End Select ListBox1.Items.Add("Processor Type: " &amp; proctype) End Function End Class </system.diagnostics.debuggerstepthrough>得到CD-ROM信息 Imports System.Management Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows 窗体设计器生成的代码 " Public Sub New() MyBase.New() '该调用是 Windows 窗体设计器所必需的。 InitializeComponent() '在 InitializeComponent() 调用之后添加任何初始化 End Sub '窗体重写 dispose 以清理组件列表。 Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub 'Windows 窗体设计器所必需的 '注意: 以下过程是 Windows 窗体设计器所必需的 '可以使用 Windows 窗体设计器修改此过程。 '不要使用代码编辑器修改它。 Private components As System.ComponentModel.IContainer Friend WithEvents ListBox1 As System.Windows.Forms.ListBox <system.diagnostics.debuggerstepthrough> Private Sub InitializeComponent() Me.ListBox1 = New System.Windows.Forms.ListBox Me.SuspendLayout() ' 'ListBox1 ' Me.ListBox1.Location = New System.Drawing.Point(24, 16) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(416, 173) Me.ListBox1.TabIndex = 0 ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(456, 206) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.ListBox1}) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) End Sub #End Region Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) _ Handles MyBase.Load On Error Resume Next Dim SoundDeviceQuery As New SelectQuery("Win32_CDROMDrive") Dim SoundDeviceSearch As New ManagementObjectSearcher(SoundDeviceQuery) Dim SoundDeviceInfo As ManagementObject For Each SoundDeviceInfo In SoundDeviceSearch.Get() Dim SizeInMBs As Long = (Val(SoundDeviceInfo("Size").ToString())) SizeInMBs = Int((SizeInMBs / (1024 * 1024))) ListBox1.Items.Add("CD-Rom Description: " &amp; SoundDeviceInfo("caption").ToString()) ListBox1.Items.Add("CD-Rom Manufacturer: " &amp; SoundDeviceInfo("Manufacturer").ToString()) ListBox1.Items.Add("CD-Rom Drive: " &amp; SoundDeviceInfo("drive").ToString()) ListBox1.Items.Add("CD-Rom Media Loaded: " &amp; SoundDeviceInfo("MediaLoaded").ToString()) ListBox1.Items.Add("CD-Rom Media Type: " &amp; SoundDeviceInfo("MediaType").ToString()) ListBox1.Items.Add("CD-Rom Volume Name: " &amp; SoundDeviceInfo("VolumeName").ToString()) ListBox1.Items.Add("CD-Rom Size: " &amp; SizeInMBs &amp; " MBytes") ListBox1.Items.Add("CD-Rom Status: " &amp; SoundDeviceInfo("Status").ToString()) ListBox1.Items.Add("CD-Rom MaxMediaSize: " &amp; SoundDeviceInfo("MaxMediaSize").ToString()) ListBox1.Items.Add("CD-Rom Id: " &amp; SoundDeviceInfo("Id").ToString()) ListBox1.Items.Add("CD-Rom TransferRate: "+Int(SoundDeviceInfo("TransferRate").ToString())+" KBs/秒") Next End Sub End Class </system.diagnostics.debuggerstepthrough>得到硬盘信息 Imports System.Management Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() InitializeComponent() End Sub Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub Private components As System.ComponentModel.IContainer Friend WithEvents ListBox1 As System.Windows.Forms.ListBox <system.diagnostics.debuggerstepthrough> Private Sub InitializeComponent() Me.ListBox1 = New System.Windows.Forms.ListBox Me.SuspendLayout() ' 'ListBox1 ' Me.ListBox1.Location = New System.Drawing.Point(8, 8) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(272, 212) Me.ListBox1.TabIndex = 0 ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(292, 238) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.ListBox1}) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) End Sub #End Region Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load On Error Resume Next Dim HDDDeviceQuery As New SelectQuery("Win32_DiskDrive") Dim HDDDeviceSearch As New ManagementObjectSearcher(HDDDeviceQuery) Dim HDDDeviceInfo As ManagementObject For Each HDDDeviceInfo In HDDDeviceSearch.Get() ListBox1.Items.Add("HDD Description: " &amp; HDDDeviceInfo("caption").ToString()) ListBox1.Items.Add("HDD BytesPerSector: " &amp; HDDDeviceInfo("BytesPerSector").ToString()) ListBox1.Items.Add("HDD CompressionMethod: " &amp; HDDDeviceInfo("CompressionMethod").ToString()) ListBox1.Items.Add("HDD Index: " &amp; HDDDeviceInfo("Index").ToString()) ListBox1.Items.Add("HDD InstallDate: " &amp; HDDDeviceInfo("InstallDate").ToString()) ListBox1.Items.Add("HDD Manufacturer: " &amp; HDDDeviceInfo("Manufacturer").ToString()) ListBox1.Items.Add("HDD Partitions: " &amp; HDDDeviceInfo("Partitions").ToString()) ListBox1.Items.Add("HDD Size: " &amp; Int(Val(HDDDeviceInfo("Size").ToString()) / 2 ^ 30) &amp; " GBytes") ListBox1.Items.Add("HDD TotalCylinders: " &amp; HDDDeviceInfo("TotalCylinders").ToString()) ListBox1.Items.Add("HDD TotalSectors: " &amp; HDDDeviceInfo("TotalSectors").ToString()) ListBox1.Items.Add("HDD TracksPerCylinder: " &amp; HDDDeviceInfo("TracksPerCylinder").ToString()) ListBox1.Items.Add("HDD TotalHeads: " &amp; HDDDeviceInfo("TotalHeads").ToString()) ListBox1.Items.Add("HDD TotalTracks: " &amp; HDDDeviceInfo("TotalTracks").ToString()) ListBox1.Items.Add("HDD SectorsPerTrack: " &amp; HDDDeviceInfo("SectorsPerTrack").ToString()) ListBox1.Items.Add("HDD SCSILogicalUnit: " &amp; HDDDeviceInfo("SCSILogicalUnit").ToString()) Next End Sub End Class </system.diagnostics.debuggerstepthrough>得到声卡信息 Imports System.Management Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() InitializeComponent() End Sub Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub Private components As System.ComponentModel.IContainer Friend WithEvents ListBox1 As System.Windows.Forms.ListBox <system.diagnostics.debuggerstepthrough> Private Sub InitializeComponent() Me.ListBox1 = New System.Windows.Forms.ListBox Me.SuspendLayout() ' 'ListBox1 ' Me.ListBox1.Location = New System.Drawing.Point(8, 8) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(272, 212) Me.ListBox1.TabIndex = 0 ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(292, 238) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.ListBox1}) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) End Sub #End Region Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim SoundDeviceQuery As New SelectQuery("Win32_SoundDevice") Dim SoundDeviceSearch As New ManagementObjectSearcher(SoundDeviceQuery) Dim SoundDeviceInfo As ManagementObject For Each SoundDeviceInfo In SoundDeviceSearch.Get() ListBox1.Items.Add("Sound Device Description: " &amp; SoundDeviceInfo("Caption").ToString()) ListBox1.Items.Add("Sound Device Status: " &amp; SoundDeviceInfo("status").ToString()) ListBox1.Items.Add("Sound Device Manufacturer: " &amp; SoundDeviceInfo("Manufacturer").ToString()) Next End Sub End Class </system.diagnostics.debuggerstepthrough>

从csdn以硬件为关键词搜索找到如下资源:
http://dev.csdn.net/develop/article/24/24025.shtm

使用WMI获得硬盘的信息     acewang [原作]
关键字   WMI HardDisk
出处  

首先,什么是WMI?
   WMI(Windows管理架构:Windows Management Instrumentation)是Microsoft基于Web的企业管理(WBEM)和 Desktop Management Task Force(DMTF)工业标准的实现. 就是一种基于标准的系统管理的开发接口,这组接口用来控制管理计算机. 它提供了一种简单的方法来管理和控制系统资源.
    如果你想深入了解他,可以参考Micorosft Platform SDK . 在这我们只是通过它实现一个简单的功能,  得到我们系统中硬盘的相关信息.
    我们需要使用.net Framwork里面System.Management名字空间下提供的类来实现.

using System;
using
System.Management;
using
System.Collections;
using System.Collections.Specialized;

 

namespace ACE_Console
{
       class ACE_Console
       {
              [STAThread]
              static void Main
(string[] args)
              {
                     StringCollection propNames = new StringCollection();
                     ManagementClass driveClass = new ManagementClass("Win32_DiskDrive");
                     PropertyDataCollection  props = driveClass.Properties;
                     foreach (PropertyData driveProperty in props) 
                     {
                            propNames.Add(driveProperty.Name);
                     }

 

                     int idx = 0;
                    ManagementObjectCollection drives = driveClass.GetInstances();
                     foreach (ManagementObject drv in drives) 
                    
                            Console.WriteLine(" Drive({0}) Properties ", idx+1);
                            foreach (string strProp in propNames)
                            {
                                   Console.WriteLine("Property: {0}, Value: {1}", strProp, drv[strProp]);
                            }
                     }
              }
       }
}    

.net Framework SDK自带的帮助里有获得逻辑硬盘大小的代码:

[C#]

using System;

using System.Management;

           

 // This example demonstrates getting information about a class using the ManagementClass object

class Sample_ManagementClass

{

       public static int Main(string[] args)

       {

              ManagementClass diskClass = new ManagementClass("Win32_LogicalDisk");

              diskClass.Get();

              Console.WriteLine("Logical Disk class has " + diskClass.Properties.Count + " properties");

              return 0;

       }

}                                

[vb]
Imports
System

Imports System.Management

       

// This example demonstrates getting information about a class using the ManagementClass

Class Sample_ManagementClass

Overloads Public Shared Function Main(args() As String) As Integer

Dim diskClass As New ManagementClass("Win32_LogicalDisk")

diskClass.Get()

Console.WriteLine(("Logical Disk class has " & diskClass.Properties.Count.ToString() & " properties"))

Return 0

End Function

End Class

 

 

VB中使用WMI获取系统硬件和软件有关信息     SoHo_Andy [原作]
关键字   WMI 系统 信息 硬件 软件
出处  

在VB中使用WMI获取系统硬件和软件有关信息

http://dev.csdn.net/develop/article/23/23371.shtm

简介:

      WMI是英文Windows Management
      Instrumentation的简写,它的功能主要是:访问本地主机的一些信息和服务,可以管理远程计算机(当然你必须要拥有足够的权限),比如:重启,关机,关闭进程,创建进程等。

实例如下:

'用WMI,先工程-引用 Microsoft WMI Scripting V1.1 Library

    获取显卡/声卡/内存/操作系统的信息

   声卡信息

Private Sub wmiSoundDeviceInfo()

   Dim wmiObjSet As SWbemObjectSet
   Dim obj As SWbemObject
  
   Set wmiObjSet = GetObject("winmgmts:{impersonationLevel=impersonate}"). _
                          InstancesOf("Win32_SoundDevice")
   On Local Error Resume Next
  
   For Each obj In wmiObjSet
      MsgBox obj.ProductName
   Next
End Sub

 

显卡信息

Private Sub wmiVideoControllerInfo()

   Dim wmiObjSet As SWbemObjectSet
   Dim obj As SWbemObject
  
   Set wmiObjSet = GetObject("winmgmts:{impersonationLevel=impersonate}"). _
                          InstancesOf("Win32_VideoController")
  
   On Local Error Resume Next
  
   For Each obj In wmiObjSet
      MsgBox obj.VideoProcessor
   Next
End Sub

内存信息

Private Sub wmiPhysicalMemoryInfo()

   Dim wmiObjSet As SWbemObjectSet
   Dim obj As SWbemObject
  
   Set wmiObjSet = GetObject("winmgmts:{impersonationLevel=impersonate}"). _
                          InstancesOf("Win32_PhysicalMemory")
  
   On Local Error Resume Next
  
   For Each objItem In wmiObjSet
        Debug.Print "BankLabel: " & objItem.BankLabel
        Debug.Print "Capacity: " & objItem.Capacity
        Debug.Print "Caption: " & objItem.Caption
        Debug.Print "CreationClassName: " & objItem.CreationClassName
        Debug.Print "DataWidth: " & objItem.DataWidth
        Debug.Print "Description: " & objItem.Description
        Debug.Print "DeviceLocator: " & objItem.DeviceLocator
        Debug.Print "FormFactor: " & objItem.FormFactor
        Debug.Print "HotSwappable: " & objItem.HotSwappable
        Debug.Print "InstallDate: " & objItem.InstallDate
        Debug.Print "InterleaveDataDepth: " & objItem.InterleaveDataDepth
        Debug.Print "InterleavePosition: " & objItem.InterleavePosition
        Debug.Print "Manufacturer: " & objItem.Manufacturer
        Debug.Print "MemoryType: " & objItem.MemoryType
        Debug.Print "Model: " & objItem.Model
        Debug.Print "Name: " & objItem.name
        Debug.Print "OtherIdentifyingInfo: " & objItem.OtherIdentifyingInfo
        Debug.Print "PartNumber: " & objItem.PartNumber
        Debug.Print "PositionInRow: " & objItem.PositionInRow
        Debug.Print "PoweredOn: " & objItem.PoweredOn
        Debug.Print "Removable: " & objItem.Removable
        Debug.Print "Replaceable: " & objItem.Replaceable
        Debug.Print "SerialNumber: " & objItem.SerialNumber
        Debug.Print "SKU: " & objItem.SKU
        Debug.Print "Speed: " & objItem.Speed
        Debug.Print "Status: " & objItem.Status
        Debug.Print "Tag: " & objItem.Tag
        Debug.Print "TotalWidth: " & objItem.TotalWidth
        Debug.Print "TypeDetail: " & objItem.TypeDetail
        Debug.Print "Version: " & objItem.Version
   Next
End Sub

操作系统信息

Private Sub Command1_Click()
    Dim wmiObjSet As SWbemObjectSet
    Dim obj As SWbemObject
    Dim msg As String
    Dim dtb As String
    Dim d As String
    Dim t As String
    Dim bias As Long
    On Local Error Resume Next
    Set wmiObjSet = GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf("Win32_OperatingSystem")
    For Each obj In wmiObjSet
        MsgBox "你当前使用的系统是 " & obj.Caption
    Next
End Sub

说明:

大家可能会发现一个规律,实际上WMI对信息的提取都是使用了WIN32_类库名这样的规律,下列表格就是微软的操作系统各种硬件类的描述

其它WMI管理的类的信息在

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmisdk/wmi/accessing_hardware_and_software_through_wmi.asp

可以找到,其中也还有部分示例代码

简单Win_32类表

Win32 Classes

Microsoft? Windows? classes give you the means to manipulate a variety of objects. The following table identifies the categories of Windows classes.

Category Description
Computer system hardware Classes that represent hardware related objects.
Operating system Classes that represent operating system related objects.
Installed applications Classes that represent software related objects.
WMI service management Classes used to manage WMI.
Performance counters

Classes that represent formatted and raw performance data.

 

 

硬件类

Computer System Hardware Classes

he Cooling Devices subcategory groups classes that represent instrumentable fans, temperature probes, and refrigeration devices.

Class Description
Win32_Fan Represents the properties of a fan device in the computer system.
Win32_HeatPipe Represents the properties of a heat pipe cooling device.
Win32_Refrigeration Represents the properties of a refrigeration device.
Win32_TemperatureProbe Represents the properties of a temperature sensor (electronic thermometer).

Input Device Classes

The Input Devices subcategory groups classes that represent keyboards and pointing devices.

Class Description
Win32_Keyboard Represents a keyboard installed on a Windows system.
Win32_PointingDevice Represents an input device used to point to and select regions on the display of a Windows computer system.

Mass Storage Classes

Classes in the Mass Storage subcategory represent storage devices such as hard disk drives, CD-ROM drives, and tape drives.

Class Description
Win32_AutochkSetting Represents the settings for the autocheck operation of a disk.
Win32_CDROMDrive Represents a CD-ROM drive on a Windows computer system.
Win32_DiskDrive Represents a physical disk drive as seen by a computer running the Windows operating system.
Win32_FloppyDrive Manages the capabilities of a floppy disk drive.
Win32_PhysicalMedia Represents any type of documentation or storage medium.
Win32_TapeDrive Represents a tape drive on a Windows computer.

Motherboard, Controller, and Port Classes

The Motherboard, Controllers, and Ports subcategory groups classes that represent system devices. Examples include system memory, cache memory, and controllers.

Class Description
Win32_1394Controller Represents the capabilities and management of a 1394 controller.
Win32_1394ControllerDevice Relates the high-speed serial bus (IEEE 1394 Firewire) Controller and the CIM_LogicalDevice instance connected to it.
Win32_AllocatedResource Relates a logical device to a system resource.
Win32_AssociatedProcessorMemory Relates a processor and its cache memory.
Win32_BaseBoard Represents a baseboard (also known as a motherboard or system board).
Win32_BIOS Represents the attributes of the computer system's basic input/output services (BIOS) that are installed on the computer.
Win32_Bus Represents a physical bus as seen by a Windows operating system.
Win32_CacheMemory Represents cache memory (internal and external) on a computer system.
Win32_ControllerHasHub Represents the hubs downstream from the universal serial bus (USB) controller.
Win32_DeviceBus Relates a system bus and a logical device using the bus.
Win32_DeviceMemoryAddress Represents a device memory address on a Windows system.
Win32_DeviceSettings Relates a logical device and a setting that can be applied to it.
Win32_DMAChannel Represents a direct memory access (DMA) channel on a Windows computer system.
Win32_FloppyController Represents the capabilities and management capacity of a floppy disk drive controller.
Win32_IDEController Represents the capabilities of an Integrated Drive Electronics (IDE) controller device.
Win32_IDEControllerDevice Association class that relates an IDE controller and the logical device.
Win32_InfraredDevice Represents the capabilities and management of an infrared device.
Win32_IRQResource Represents an interrupt request line (IRQ) number on a Windows computer system.
Win32_MemoryArray Represents the properties of the computer system memory array and mapped addresses.
Win32_MemoryArrayLocation Relates a logical memory array and the physical memory array upon which it exists.
Win32_MemoryDevice Represents the properties of a computer system's memory device along with it's associated mapped addresses.
Win32_MemoryDeviceArray Relates a memory device and the memory array in which it resides.
Win32_MemoryDeviceLocation Association class that relates a memory device and the physical memory on which it exists.
Win32_MotherboardDevice Represents a device that contains the central components of the Windows computer system.
Win32_OnBoardDevice Represents common adapter devices built into the motherboard (system board).
Win32_ParallelPort Represents the properties of a parallel port on a Windows computer system.
Win32_PCMCIAController Manages the capabilities of a Personal Computer Memory Card Interface Adapter (PCMCIA) controller device.
Win32_PhysicalMemory Represents a physical memory device located on a computer as available to the operating system.
Win32_PhysicalMemoryArray Represents details about the computer system's physical memory.
Win32_PhysicalMemoryLocation Relates an array of physical memory and its physical memory.
Win32_PNPAllocatedResource Represents an association between logical devices and system resources.
Win32_PNPDevice Relates a device (known to Configuration Manager as a PNPEntity), and the function it performs.
Win32_PNPEntity Represents the properties of a Plug and Play device.
Win32_PortConnector Represents physical connection ports, such as DB-25 pin male, Centronics, and PS/2.
Win32_PortResource Represents an I/O port on a Windows computer system.
Win32_Processor Represents a device capable of interpreting a sequence of machine instructions on a Windows computer system.
Win32_SCSIController Represents a small computer system interface (SCSI) controller on a Windows system.
Win32_SCSIControllerDevice Relates a SCSI controller and the logical device (disk drive) connected to it.
Win32_SerialPort Represents a serial port on a Windows system.
Win32_SerialPortConfiguration Represents the settings for data transmission on a Windows serial port.
Win32_SerialPortSetting Relates a serial port and its configuration settings.
Win32_SMBIOSMemory Represents the capabilities and management of memory-related logical devices.
Win32_SoundDevice Represents the properties of a sound device on a Windows computer system.
Win32_SystemBIOS Relates a computer system (including data such as startup properties, time zones, boot configurations, or administrative passwords) and a system BIOS (services, languages, system management properties).
Win32_SystemDriverPNPEntity Relates a Plug and Play device on the Windows computer system and the driver that supports the Plug and Play device.
Win32_SystemEnclosure Represents the properties associated with a physical system enclosure.
Win32_SystemMemoryResource Represents a system memory resource on a Windows system.
Win32_SystemSlot Represents physical connection points including ports, motherboard slots and peripherals, and proprietary connections points.

抱歉!评论已关闭.