vote up 1 vote down star
1

I have a demo that runs off of a USB drive and I would like to prevent the simple case where some one copies the demo. I was thinking that I could just get something specific about the USB drive like manufacture,size, firmware version and or identifier. Since we are putting the demo together and sending it out it could be tied to a specific vendor for the drive. I will probably be doing this using c#.

flag

I won't post this as an Answer since I'm purely speculating, but can you retrieve the Serial Number for the USB drive itself, and check for that? Con: Does the serial number change when you put the key into a different machine? Con: Can the serial number be manually set? – JMD Feb 11 at 21:51
(I.e. I'm referring to the Serial Number you see when you "dir x:") – JMD Feb 11 at 21:51
Serial numbers are fine if the demo is only being deployed to a single USB drive - but if this is for more general marketing, then obviously each USB pen will have a different serial! Manufacturer may be the way to go, but as Stefan says it's not 100% secure! – Macka Feb 11 at 21:55

2 Answers

vote up 3 vote down check

Using this you can get the serialnumber for the USB-stick and can code that in the application: http://stackoverflow.com/questions/450009/how-to-get-serial-number-of-usb-stick-in-c

But whatever you do, someone can use reflector or some other program and take away that check from your program.

link|flag
The average "Joe" is going to have a lot of problems trying to run a copied demo. – backslash17 Aug 20 at 14:58
vote up 0 vote down

Check this other SO question out. This appears to provide you with the manufacture details.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.