How Get Cpu Name
-
How Can I Get Cpu Name???
-
How Can I Get Cpu Name???
-
FriendlySoluations wrote:
How Can I Get Cpu Name???
Me.Text = System.Environment.MachineName Hope this helps :) clanguage
I think he mean the name of the actual CPU, not the name of the machine in which the CPU resides.
Upcoming Scottish Developers events: * UK Security Evangelists On Tour (2nd November, Edinburgh) * Developer Day Scotland: are you interested in speaking or attending? My: Website | Blog
-
I think he mean the name of the actual CPU, not the name of the machine in which the CPU resides.
Upcoming Scottish Developers events: * UK Security Evangelists On Tour (2nd November, Edinburgh) * Developer Day Scotland: are you interested in speaking or attending? My: Website | Blog
-
How Can I Get Cpu Name???
WMI... Alway's slow but.. somthing like this.. Imports System.Management Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim ConfigNamespace As String = "\\.\root\cimv2" Dim query As String = "select * from Win32_Processor" Dim searcher As ManagementObjectSearcher = New ManagementObjectSearcher(ConfigNamespace, query) Dim collection As ManagementObjectCollection = searcher.Get For Each item As ManagementObject In collection For Each prop As PropertyData In item.Properties Try Console.WriteLine(prop.Name + ":" + prop.Value.ToString) Catch gExVar As Exception End Try Next Next End Sub