Reputation: 141
Kindly advise on below requirement
We need to include a trial period or a time limit to a program. We have only the exe file. We do not have the source files. Is there any tool available to include a trial period (like limiting 30 days) to this exe file
Thanks
Upvotes: 2
Views: 1762
Reputation: 187
There is a bunch of such protector-applications, for example:
Enigma - http://enigmaprotector.com/
WinLicense - http://www.oreans.com/winlicense.php
VMProtect - http://vmpsoft.com/
and others
Upvotes: 2
Reputation: 39632
You could create an own exe-file which calls your trial-exe (which you should rename to something like .lib
). After 30 days your exe deletes the trial-exe. But if the users gets behind this it will fail ;-)
Hmm, you can secure this a little by encrypting the trial-exe and decrypting it on runtime. It your be ideal if the decrypted file would not resist in a temp file but only in memory.
Upvotes: 0