HWID Finder (Source) 03-16-2011, 12:53 PM
#1
HWID Finder source and release
What you need:
1 textbox
2 Buttons
If you get errors:
Project> add reference> .NET> System management
What you need:
1 textbox
2 Buttons
Code:
Imports System.Management
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim cpuInfo As String = String.Empty
Dim mc As New ManagementClass("win32_processor")
Dim moc As ManagementObjectCollection = mc.GetInstances()
For Each mo As ManagementObject In moc
If cpuInfo = "" Then
cpuInfo = mo.Properties("processorID").Value.ToString()
Exit For
End If
Next
TextBox1.Text = cpuInfo
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
MsgBox("Credits: H3ROiN " &newvbline "Jeroed")
End Sub
End ClassIf you get errors:
Project> add reference> .NET> System management
![[Image: tumblr_lawowkq1WB1qd0ix2o1_500.png]](http://28.media.tumblr.com/tumblr_lawowkq1WB1qd0ix2o1_500.png)
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)

![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)