当前位置: 首页 > 工具软件 > ID3.NET > 使用案例 >

VB.NET 获取CPU ID

萧萧迟
2023-12-01

获取CPU ID

Dim Wmis As New System.Management.ManagementObjectSearcher("SELECT * FROM Win32_Processor")

            Dim Uint32s As String
            Dim Fekmms
            For Each WmiObj As ManagementObject In Wmis.Get
                Uint32s = WmiObj("ProcessorId")

            Next

textbox1.text=Uint32s 

 类似资料: