Jump to content

Recommended Posts

Posted
Imports System.Management
Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim HDD_Serial As String

Dim hdd As New ManagementObjectSearcher("select * from Win32_DiskDrive")

For Each hd In hdd.Get
HDD_Serial = hd("SerialNumber")
Label2.Text = HDD_Serial
Next
End Sub
end class

este código funciona bem no Windows 8 mas da erro no xp

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.