2

Possible Duplicate:
Unique computer id

I'm developing a server/client application which needs to implement a string client tracking system for different purposes (licences, security, etc...) assigning to every new registered client a unique identity. What is the best way to achieve that?

Community
  • 1
  • 1

1 Answers1

1

Here is a CodeProject article that covers this reasonably well: http://www.codeproject.com/Articles/28678/Generating-Unique-Key-Finger-Print-for-a-Computer

Grant H.
  • 3,689
  • 2
  • 35
  • 53
  • This code have an problem! In some cases the fingerprint produced is different, without any hardware change. – Eduardo Jul 12 '17 at 17:28
  • @ECC and did you find a solution or change anything? – juFo Mar 21 '18 at 11:02
  • 1
    @juFo, in my case I simplified my approach. What I really needed was simpler and only with the HD serial number, solved for me. – Eduardo Mar 21 '18 at 12:29