Click here to Skip to main content
15,879,326 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.8K   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

 
QuestionGood work, Activex Control? Pin
hajer29-Apr-04 22:59
hajer29-Apr-04 22:59 
GeneralNice one Pin
deepakbsmurthy26-Feb-04 22:56
deepakbsmurthy26-Feb-04 22:56 
Questionhow secure is this? Pin
brian scott31-Dec-03 11:05
brian scott31-Dec-03 11:05 
AnswerRe: how secure is this? Pin
Griffter UK9-Aug-06 5:18
Griffter UK9-Aug-06 5:18 
GeneralGood job but ... Pin
Juan Carlos Cobas29-Jul-03 12:23
Juan Carlos Cobas29-Jul-03 12:23 
GeneralRe: Good job but ... Pin
Nish Nishant29-Jul-03 15:23
sitebuilderNish Nishant29-Jul-03 15:23 
GeneralRe: Good job but ... Pin
Juan Carlos Cobas30-Jul-03 4:48
Juan Carlos Cobas30-Jul-03 4:48 
GeneralRe: Good job but ... Pin
Nish Nishant30-Jul-03 6:48
sitebuilderNish Nishant30-Jul-03 6:48 
Juan Carlos Cobas wrote:
tried instead with HKEY_CURRENT_USER and this seems to work correctly

Sorry, I meant HKCU. HKey Users was an absent minded typo Frown | :-(

Nish

p.s. I am glad you got it working finally Smile | :)




"I'm a bit bored at the moment so I'm thinking about writing a new programming language" - Colin Davies

My book :- Summer Love and Some more Cricket [New Win]
Review by Shog9 Click here for review[NW]

GeneralRe: Good job but ... Pin
Juan Carlos Cobas30-Jul-03 6:04
Juan Carlos Cobas30-Jul-03 6:04 
GeneralRe: Good job but ... Pin
Nish Nishant30-Jul-03 6:45
sitebuilderNish Nishant30-Jul-03 6:45 
GeneralRe: Good job but ... Pin
Juan Carlos Cobas30-Jul-03 7:58
Juan Carlos Cobas30-Jul-03 7:58 
GeneralRe: Good job but ... Pin
fischer_man_s2-Jul-04 12:53
sussfischer_man_s2-Jul-04 12:53 
GeneralBug in GetDayCount( ) Pin
Codin' Carlos17-Apr-03 17:07
Codin' Carlos17-Apr-03 17:07 
GeneralRe: Bug in GetDayCount( ) Pin
EnCoder12-Oct-03 14:54
EnCoder12-Oct-03 14:54 
QuestionFound a memory leak bug? Pin
Codin' Carlos19-Oct-02 7:21
Codin' Carlos19-Oct-02 7:21 
AnswerRe: Found a memory leak bug? Pin
Nish Nishant19-Oct-02 8:14
sitebuilderNish Nishant19-Oct-02 8:14 
GeneralGood Job Pin
Old Timer18-Oct-02 1:25
Old Timer18-Oct-02 1:25 
GeneralRe: Good Job Pin
Nish Nishant18-Oct-02 1:32
sitebuilderNish Nishant18-Oct-02 1:32 
GeneralIdea (add version/build param) Pin
CzarTJ6-Aug-02 8:49
CzarTJ6-Aug-02 8:49 
GeneralRe: Idea (add version/build param) Pin
Nish Nishant6-Aug-02 17:54
sitebuilderNish Nishant6-Aug-02 17:54 
GeneralAnother Suggestions Pin
Mauricio Ritter11-Mar-02 1:53
Mauricio Ritter11-Mar-02 1:53 
GeneralRe: Another Suggestions - Set Hidden File Time Pin
Codin' Carlos18-Oct-02 6:22
Codin' Carlos18-Oct-02 6:22 
GeneralRe: Another Suggestions - Set Hidden File Time Pin
over-cast30-Dec-03 18:14
sussover-cast30-Dec-03 18:14 
GeneralExcellent Pin
5-Mar-02 10:20
suss5-Mar-02 10:20 
GeneralArticle Updated [Mar 02 2002] Pin
Nish Nishant1-Mar-02 18:02
sitebuilderNish Nishant1-Mar-02 18:02 

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.