A
Adele le Roux
I have the following code to retrieve the CPU ID of the local computer. How
do I know which other keywords I can use instead of "ProcessorID" to
retrieve other hardware information?
Dim strKey As String
Dim searcher As New Management.ManagementObjectSearcher("SELECT * FROM
Win32_Processor")
Dim share As Management.ManagementObject
For Each share In searcher.Get()
strKey = share("ProcessorId").ToString()
Return strKey
Next share
do I know which other keywords I can use instead of "ProcessorID" to
retrieve other hardware information?
Dim strKey As String
Dim searcher As New Management.ManagementObjectSearcher("SELECT * FROM
Win32_Processor")
Dim share As Management.ManagementObject
For Each share In searcher.Get()
strKey = share("ProcessorId").ToString()
Return strKey
Next share