[VB.NET] HWID Oluşturma !

1Jeff

Developer & Coder
Ultra Member
Joined
Oct 20, 2019
Topics
145
Messages
720
Reaction score
443
Location
Helsinki
Keklerinize ekleyebileceğiniz mükemmel bir kod vereceğim.
Bu kod sayesinde herhangi birisinin HWID'ini onaylayıp kekinizi kullanmanıza izin verebilirsiniz.
Bu kodu nasıl onaylarım derseniz ister Facebook'da post altına , ister WebSite'nizde onaylayabilirsiniz.

Dilerseniz veya eğer yardım isterseniz farklı bir konuda yardımcı olurum sizlere.Gelelim Kodumuza
Code:
Public Class'ın Üstüne Gelecek !
-
-

Imports System.Management


Code:
Public Class'ın Altına Gelecektir !
--
--

Dim cpuInfo As String
    Function GetHWID()
        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
        Return cpuInfo
    End Function
 

Top