[RESOLVED] [2005] Retrieving computer information
Hello everyone,
Can someone tell me if theres any way to retrieve the unique system serial number or id ...or anything thats just unique for each machine?
This is for making an activation for a software.
Please suggest me through what way I can retrieve the system id or serial..
Thanks,
Godwin
Re: [2005] Retrieving computer information
There is no common serial number for computers. The best you can do is to create a hardware hash out of a few of the main hardware items like cpu, memory, and hard drive serial number (physical and not volume). You will need to use WMI class to do it. Gigemboy has a CodeBank thread on WMI.
Re: [2005] Retrieving computer information
You can use My namespace to get some specific computer info:
VB Code:
Dim fullName, compName As String
fullName = My.Computer.Info.OSFullName
compName = My.Computer.Name
Re: [2005] Retrieving computer information
Yes, but that info can be changed so easily by the user. ;)
Re: [2005] Retrieving computer information
Thanks Rob,I saw gigemboys code..It was excellent really...Thats just what I needed..Many Thanks to Gigemboy too :)