Incorporating shareware restrictions in C++ software

前端 未结 5 1486
闹比i
闹比i 2021-02-14 01:29

I wish to implement my software on a shareware basis, so that the user is given a maximum trial period of (say) 30 days with which to try out the software. On purchase I intend

5条回答
  •  太阳男子
    2021-02-14 02:01

    Also watch out for the time changing radically, if the current date is magically less than the install date and such.

    One way to get around this type of datelock is to change your date before you install to be years in the future. So you should check that the date today is not less that the install date.

提交回复
热议问题