I am experimenting with software copy protection ideas and now I have the following problem.

I have a trial version of my application. Trial data are stored in a certain file and also in some certain registry keys. Of course I know that user can break this trial protection by using some registry and file monitoring and backup tools but I want at least protect against some simple hacks like date-time changes and using Windows System Restore.

The problem is that Windows System Restore wipes out all my application files and also the trial data. I know that System Restore does not affect User's documents folder but I not want to store the trial datafile there, because it is too obvious.

Is there any way I can stop System Restore to remove my trial data file?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Why not store it in the user's doc application folder?

  • Encrypt the content in the file
  • When the file is gone, trial is over

Application folder

http://msdn.microsoft.com/en-us/library/bb425869.aspx

Security through obscurity

http://en.wikipedia.org/wiki/Security_through_obscurity

Other option is the use of the application settings

Best practice to save application settings in a Windows application

link|improve this answer
That would be too obvious: user will look in the docs folder and see that there is some weird file. – Martin Apr 6 '11 at 9:44
Why is it relevant that the user notices strange files? – rdkleine Apr 6 '11 at 10:42
Because users sometimes delete strange files in their data folders, especially because there are lots of viruses as .exe, .inf, .jpg.exe, fake recycle bin files. I know many people, who delete from their flash memory sticks everything that they did not write there themselves, and some people do the same for their documents folder. – Martin Apr 9 '11 at 11:42
feedback

Your Answer

 
or
required, but never shown

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