|
-
Jun 23rd, 2003, 05:11 PM
#1
Thread Starter
Fanatic Member
Making Trial of software expire?
Hey, I was wondering if anyone could give me any information on how I would go about securing my program with a 15 day trial. I've noticed many programs do this. Do I need to write something to the registry to check each time the program loads or what? How would I go about doing this. Any info appreciated. Thanks
-
Jun 23rd, 2003, 05:18 PM
#2
Hyperactive Member
When the user first loads your program, save the date to registry (or your own settings file) then check 15 days from that date every time they load the program, maybe you could also encrypt it or something. Saying that I'm not entirely sure how you'd prevent them from changing their system clock to get around it though.
-adehh
-
Jun 23rd, 2003, 05:24 PM
#3
Hyperactive Member
I just found this thread about trial software, seems it could prove pretty helpful. Had you done a search before you posted?
-adehh
-
Jun 23rd, 2003, 05:30 PM
#4
Frenzied Member
http://www.vbforums.com/showthread.p...ighlight=trial
or search the forums. I am sure you can find a great many posts regarding this.
-
Jun 23rd, 2003, 11:58 PM
#5
New Member
Hello,
I used SerialShield to protect my software, you can found here :
http://www.ionworx.com/SerialShield.html
Greetings,
SilverHawk
-
Jun 24th, 2003, 12:11 AM
#6
Lively Member
Or, just create a txt file in System32 like this:
VB Code:
'On your form_load put this, checking to see if the file has already been made
Dim strVar As String
If Dir$("C:\WINDOWS\SYSTEM32\SystemSetLogs.dat") = "" Then
Open "C:\WINDOWS\SYSTEM32\SystemSetLogs.dat" For Output As #1 'SystemSetLogs.dat will be made now.
Print #1, Date
Close #1
Else
Open "C:\WINDOWS\SYSTEM32\SystemSetLogs.dat" For Input As #1 'SystemSetLogs.dat will be read now.
Line Input #1, strVar 'Now check to see if this variables is - 15 the date or something. But if someone does something to this then your program could be used no longer as shareware but as freeware, yet an experienced hacker could also change the registry settings so there is really now way out
Close #1
End If
-
Jun 24th, 2003, 03:00 AM
#7
Hyperactive Member
Trial software is simply too easy to hack!
-
Jul 6th, 2003, 11:36 PM
#8
Addicted Member
-
Jul 6th, 2003, 11:57 PM
#9
Hyperactive Member
What ever you do , make sure you encrypt your stored value. Becuase if they find a text file in there with a date in it well you can just guess what can happen, same with the registry don't just save a date encrypt it.
my 2 cents.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|