vote up 0 vote down star

How can I restrict my .net based windows application to run only when the original CD is present in CD drive. Also the user shouldn't be allowed to create copy of CD.

flag

48% accept rate
7  
This is so 90's that I would recommend thinking about a different approach to prevent piracy. Probably anything would be better than this. – Tomalak Jun 26 at 12:19
2  
Like making a product people are willing to pay for. – Matthew Scharley Jun 26 at 12:22
2  
CDs are a dying technology - assume people will be downloading your software online. – OrbMan Jun 26 at 12:24
You could think about USB dongles, if you really want to be this rigid. – Tomalak Jun 26 at 12:29

5 Answers

vote up 4 vote down check

You can't do this -- your software might be running in a virtual machine with a virtual CD drive and people could configure those to be indistinguishable from the real thing.

I believe some game companies tried a scheme where they put physical defects on their CDs, and the games would then only play if it found those defects. The idea being that naive program wont be able to copy the disc because of the unreadable parts, or that a copy made would not have the same physical defects as the original. However, unless you have access to such equipment, I don't think you can do this.

link|flag
I know the PS1 worked off this principle. But there were commercially available drives that could write the bad sectors anyway (not many, but they were there), so that kind of broke that idea. – Matthew Scharley Jun 26 at 12:21
@monoxide, they were far more common than your comment seems to suggest. programs like clonecd took advantage of this common feature in cd-r drives to copy everything -- bad sectors included. It essentially killed that form of copy protection. – Jonathan Fingland Jun 26 at 12:24
vote up 4 vote down

Have you read http://en.wikipedia.org/wiki/Copy_protection#Copy_protection_for_computer_software ?

If you can assume that your customers have access to the internet once your app is installed you can make sort of a licensing-server/webservice solution. Then you can do a serialnumber approach which checks to your webservice for validity. (like the Ms-Windows activation)

You can use the mac-address of the network-card for a hardware ID to base your activation upon.

link|flag
vote up 0 vote down

With far more trouble (for everyone involved) than it is worth in most cases.

link|flag
vote up 0 vote down

You could do it the tried and tested way and use cd-keys, use your imagination for the implementation.

link|flag
vote up 0 vote down

Restricting being able to run the application when the CD drive is just a matter of keeping some files on the CD that the application needs to run, so you'll get an error if those files aren't found.

Copy protection on on the CD isn't something I know how to help you with. I agree with other posters though. It's the internet age, CD's are dieing, if you want to put protection on your software, you need to implement a solution that will work with a downloaded app.

link|flag

Your Answer

Get an OpenID
or

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