vb.net 获取计算机信息,VB.NET中得到计算机硬件信息

八、得到硬盘信息

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

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: " & HDDDeviceInfo("caption").ToString())

ListBox1.Items.Add("HDD BytesPerSector: " & HDDDeviceInfo("BytesPerSector").ToString())

ListBox1.Items.Add("HDD CompressionMethod: " & HDDDeviceInfo("CompressionMethod").ToString())

ListBox1.Items.Add("HDD Index: " & HDDDeviceInfo("Index").ToString())

ListBox1.Items.Add("HDD InstallDate: " & HDDDeviceInfo("InstallDate").ToString())

ListBox1.Items.Add("HDD Manufacturer: " & HDDDeviceInfo("Manufacturer").ToString())

ListBox1.Items.Add("HDD Partitions: " & HDDDeviceInfo("Partitions").ToString())

ListBox1.Items.Add("HDD Size: " & Int(Val(HDDDeviceInfo("Size").ToString()) / 2 ^ 30) & " GBytes")

ListBox1.Items.Add("HDD TotalCylinders: " & HDDDeviceInfo("TotalCylinders").ToString())

ListBox1.Items.Add("HDD TotalSectors: " & HDDDeviceInfo("TotalSectors").ToString())

ListBox1.Items.Add("HDD TracksPerCylinder: " & HDDDeviceInfo("TracksPerCylinder").ToString())

ListBox1.Items.Add("HDD TotalHeads: " & HDDDeviceInfo("TotalHeads").ToString())

ListBox1.Items.Add("HDD TotalTracks: " & HDDDeviceInfo("TotalTracks").ToString())

ListBox1.Items.Add("HDD SectorsPerTrack: " & HDDDeviceInfo("SectorsPerTrack").ToString())

ListBox1.Items.Add("HDD SCSILogicalUnit: " & HDDDeviceInfo("SCSILogicalUnit").ToString())

Next

End Sub

End Class

九、得到声卡信息

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

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: " & SoundDeviceInfo("Caption").ToString())

ListBox1.Items.Add("Sound Device Status: " & SoundDeviceInfo("status").ToString())

ListBox1.Items.Add("Sound Device Manufacturer: " & SoundDeviceInfo("Manufacturer").ToString())

Next

End Sub

End Class

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值