Click here to Skip to main content
15,860,844 members
Articles / Programming Languages / C++
Article

CExpire - A C++ class that implements time and run based restrictions

Rate me:
Please Sign up or sign in to vote.
4.88/5 (37 votes)
28 Feb 2002Ms-PL3 min read 246.2K   2.2K   104   72
Shareware authors can use this class to limit the number of runs or the number of days that a program will function

Purpose

This class is something I wrote to kill time. But by the time I finished it, I thought it might be pretty useful for shareware developers. It can be used to implement limited-number-of-runs and limited-time-period-only programs. Means if you want to allow only 25 runs, then this class will do that for you. Or if you want to restrict execution to 15 days from first run, this program will do that too. By the way, even if the user changes his system date back to the allowed-time-period after it has expired, he/she won't be able to run it. 

Disclaimer

This is by no means a fool-proof protection scheme, but it serves its purpose at the intermediate level. And usually crackers manage to actually patch the executable to disable these checks or they manage to write key generators for your protected programs. But this class will save some time for you in the sense, it actually does what you would otherwise have to code on your own.

Protection Mechanism

It uses a combination of registry and file based protection mechanisms. You should be smart enough to pick the right innocent sounding registry keys and filenames to prevent the casual user from simply deleting a few odd keys and break the protection.

How to use the class.

You must instantiate an object of the class as early as possible. You may declare it as a global object if you would like to. In an SDK program, you might want to instantiate the class on the first line in your WinMain() and in an MFC program you might want to put it in your CWinApp derived class's InitInstance().

There are two ways in which you can use the class. In the first way you specify a specific number of times that the program can be run. In the second you set a number of days so that the program is active for that many days from the time of first execution. I shall demonstrate both methods below.

The constructor takes 4 parameters.

CExpire(const char*  ProgName,const char* KeyName, UINT Num, UINT ExpireType);

ProgName - This is a unique value that will be used to create the unique registry key for protection. It is a good idea to choose a GUID for this key. It will be placed in a location confusing enough for most of the average users of your program.

KeyName - This is again used as part of the unique registry key as well as in the generation of the special file. You can use a unique, but natural sounding name like MouseDrv98 or something that would not actually stand out.

Num - This is either the number of days from the date of execution or the total number of runs allowed. This value's interpretation depends upon the ExpireType parameter.

ExpireType - This can be one of two values as shown below

TYPERUNS - This implies run-count based protection
TYPEDAYS - This implies date-interval based protection

There are only three public functions that you'll need to call.

bool HasExpired();

It returns true if your program has expired and false if the user is still within his allowed limits.

UINT GetDaysLeft();

This returns the number of days left before the program expires. Use this if you have chosen ExpireType as TYPEDAYS

UINT GetRunsLeft();

This returns the number of runs left before the program expires. Use this if you have chosen ExpireType as TYPERUNS

Example Usage

SDK example

int APIENTRY WinMain(HINSTANCE hInstance,HINSTANCE,LPSTR,int)
{
    CExpire Protector("{00000000-0000-0000-8888-00AA006D2EA4}",
        "InprocServer32",6,TYPEDAYS);
    if(Protector.HasExpired())
    {	
        MessageBox(0,
            "This program has expired. Please buy the registered version.",
            "Fatal Error",0);
    }
    else
    {
        char s[128];
        sprintf(s,"you have %d days left",Protector.GetDaysLeft());
        MessageBox(0,s,"",0);
        StartExecution();
    }
    return 0;
}

MFC example

BOOL CTest_deleteApp::InitInstance()
{
    CExpire expire("JPEG-File-Viewer","FileStore",30,TYPERUNS);
    if(expire.HasExpired())
    {
        AfxMessageBox("This program will not run anymore...");
        return FALSE;
    }
    char s[128];
    sprintf(s,"you have %d runs left",expire.GetRunsLeft());
    AfxMessageBox(s);	

    AfxEnableControlContainer();	
	
#ifdef _AFXDLL
    Enable3dControls();	
#else
    Enable3dControlsStatic();	
#endif

    CTest_deleteDlg dlg;
    m_pMainWnd = &dlg;
    int nResponse = dlg.DoModal();

    // Since the dialog has been closed, return FALSE so that we exit the
    //  application, rather than start the application's message pump.
    return FALSE;
}

Important Warning

DON'T choose a value for the KeyName parameter that might already define a file in the Windows System directory. It will be over-written. The best thing to do is to choose a filename and then add some numbers to the end like 32_32 or something natural sounding.

Thank you.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
QuestionWhy it needs admin privileges to work properly? Pin
Member 1463068822-Apr-20 3:49
Member 1463068822-Apr-20 3:49 
GeneralMy vote of 1 Pin
kore3d18-Jan-15 22:13
kore3d18-Jan-15 22:13 
GeneralRe: My vote of 1 Pin
Nish Nishant19-Jan-15 4:32
sitebuilderNish Nishant19-Jan-15 4:32 
GeneralMy vote of 5 Pin
Manikandan1028-Jun-14 4:11
professionalManikandan1028-Jun-14 4:11 
QuestionRegistry key deletion Pin
Djibril9-Nov-11 7:04
professionalDjibril9-Nov-11 7:04 
GeneralSome comments would have been very useful... Pin
Ady_MFC6-Feb-07 10:08
Ady_MFC6-Feb-07 10:08 
Questionit does not work on Windows Vista Pin
Yurat20-Dec-06 4:38
Yurat20-Dec-06 4:38 
AnswerRe: it does not work on Windows Vista Pin
Tayrone Augusto2-May-07 11:24
Tayrone Augusto2-May-07 11:24 
GeneralRe: it does not work on Windows Vista Pin
cujobr15-Jul-09 2:45
cujobr15-Jul-09 2:45 
Generalgood, but not really usable Pin
T1TAN16-Dec-05 14:33
T1TAN16-Dec-05 14:33 
GeneralRe: good, but not really usable Pin
Nish Nishant21-Jul-06 8:49
sitebuilderNish Nishant21-Jul-06 8:49 
Generaldo you have something like this in C# Pin
Anonymous20-Oct-05 4:38
Anonymous20-Oct-05 4:38 
GeneralRe: do you have something like this in C# Pin
Nish Nishant21-Jul-06 8:49
sitebuilderNish Nishant21-Jul-06 8:49 
GeneralRe: do you have something like this in C# Pin
Prasadrn26-Nov-07 3:26
Prasadrn26-Nov-07 3:26 
GeneralRe: do you have something like this in C# Pin
Prasadrn26-Nov-07 3:31
Prasadrn26-Nov-07 3:31 
QuestionRe: do you have something like this in C# Pin
Programm3r22-Jul-09 20:17
Programm3r22-Jul-09 20:17 
GeneralI'd be happy with the security of using the registry, but not this Pin
Pierz Newton-John10-Nov-09 13:36
Pierz Newton-John10-Nov-09 13:36 
GeneralI found one problem Pin
Jiten D. Gandhi31-Oct-04 20:07
Jiten D. Gandhi31-Oct-04 20:07 
GeneralRe: I found one problem Pin
Anonymous21-Feb-05 1:51
Anonymous21-Feb-05 1:51 
GeneralRe: I found one problem Pin
David Crow16-Aug-05 2:50
David Crow16-Aug-05 2:50 
GeneralRe: I found one problem Pin
GaJurong16-Oct-06 21:30
GaJurong16-Oct-06 21:30 
GeneralRe: I found one problem Pin
Djibril8-Nov-11 8:47
professionalDjibril8-Nov-11 8:47 
GeneralRe: I found one problem Pin
Djibril9-Nov-11 7:05
professionalDjibril9-Nov-11 7:05 
GeneralRe: I found one problem Pin
Djibril29-Nov-11 5:29
professionalDjibril29-Nov-11 5:29 
QuestionGood work, Activex Control? Pin
hajer29-Apr-04 22:59
hajer29-Apr-04 22:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.