vote up 3 vote down star
2

Hi,

I have a C# program that I would like to sell and I want to offer a 14 day trial, I understand that all piracy prevention schemes are overcome so I don't want to waste much time doing this. Could anyone offer any suggestion and even some sample code?

Thanks

flag

7 Answers

vote up 6 vote down

My choice would be to store the date of the install (encrypted with a key) in the registry or config file. Look at this each time the application starts.

Obviously if they decompile the source they'll find the key in it, obfuscating might help this a bit, or using public/private key but that is probably an overkill for what you need.

link|flag
Couldn't they just delete the key entry from the registry? – GONeale Jan 6 '09 at 1:00
Nevermind, the program should check that a valid encrypted key exists in the registry first, or then terminates. – GONeale Jan 6 '09 at 1:02
vote up 1 vote down

Only save way of doing this would insult an online registration of the software, to one of you servers. The software should generate an id on install with fixed system ids used, so the server may identify the software on that system.

Well, I would recommend not to build a trial version, but a free version with limited functionality.

link|flag
vote up 3 vote down

I would use .NET Reactor over at www.eziriz.com

link|flag
vote up 4 vote down

A thief can always turn back the clock to within 14 days of the install, as well as virtualization to achieve the same end. Can you count on net access and have the program phone home for a key?

HASP is one company that does this full time.

Also, depending on factors such as the size of your target market, your purchase price, your competition, and the ecosystem you're selling to, you might consider that some amount of priracy might be your best marketing tool. Which is the greater risk: that your software is widely pirated, or that your software is lost in the noise and few ever even try it? Some software allegedly owes it success to wide spread piracy (WordStar, dBase, Lotus 1-2-3, iirc). A quick google shows that Chapter 13 of "in search of stupidity" touches on this.

It's a tough question, good luck.

link|flag
vote up 3 vote down

Store the date of the install encryped as mentioned.

Also store todays date every time the app starts. If the day suddenly has gone back in time, you know they've cheaten and you close the program.

link|flag
vote up 2 vote down

Just do a nag screen if it's not registered. People are going to steal your software, whether you like it or not. Wasting time on a copy protection system is just going to make it more frustrating when people steal your software.

A gentle reminder that it's still in the trial stage will probably suit you better, ala WinRar.

link|flag
vote up -1 vote down

nothing just give to other your software that makes your knowledge best

link|flag

Your Answer

Get an OpenID
or

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