We market a software using a 30 day trial version. Currently we track the trial version via Registry keys. However, this becomes a problem with business users whose IT dept controlled laptop does not allow them admin privileges. So we are looking for other ways to implement the trial version checks which do not include the registry or admin privileges.

Are there any best practices regarding this? We do not want to implement web based checking. Also, we do not want to limit features in the trial version. The other option we have thought about is to write date in a hidden encrypted file.

Any reference or pointers to solving this are greatly appreciated.

link|improve this question
The encrypted file can be cracked pretty easily, as your program's encoding method can be extracted by disassembling. – Blender Feb 3 '11 at 14:01
Extensively discussed here: programmers.stackexchange.com/questions/10340/… – Piskvor Feb 3 '11 at 14:07
feedback

1 Answer

You can still store encrypted license information in both files or system registry in case application is used by restricted users only. There are parts of file system and registry which can be used for this purpose so this should not be a serious obstacle in implementing such checks.

If you are going to implement any kind of date checks, you also need to implement exact date/time tracking in your code in order to be able to prevent changing of system date.

However, as stated in one of previous replies, you still have to encrypt/protect your own code (application) in order to make these checks in your code protected against patching/modifying.

If you are thinking about using third party, ready made software copy protection solution which supports restricted users even on large networks with roaming profiles enabled take a look at PC Guard for .NET (Win32) from Software Protection Labs (SOFPRO).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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