軟體試用期及試用次數控制(附部分關鍵程式碼)! (轉)
其實網上已經有不少現成的,它們可以幫你做到一些共享軟體的時間控制,比如試用30天,試用100次等。前些天給臺灣人寫的軟體現在需要要一個試用版,由於是繁體,想用網上已有的軟體<>來做,但在繁體下一執行就把機子搞死了,害得我新裝了繁體2000。後來想想還是自己寫算了。
對方要求試用90天,150次。本來也想用時間同步的方法來實現(以前也都實現了),但考慮到一些問題,想想沒有那些必要,反正這也不是什麼重要的東西,也就好棄了。我的思路是這樣的,在軟體時,取得系統時間 ,加密(我採用DES),寫入登錄檔,寫入INI(兩手準備,加強)。檔案和登錄檔都寫入相同的資料,如果它們不相同,那麼軟體就不能執行,寫入項包括安裝時間,使用次數以及使用時間等。軟體執行時檢查時間是否全法,檔案和登錄檔都寫入的資料是否相同,如果有問題就不讓再使用,並且刪除ini檔案和登錄檔的部分資料(沒有全部刪除,以防止再次安裝)。申明本方法並不是安全的,只是為了應付一般的要求而已,如果需要高安全性,請使用其它的方法。
下面的程式碼簡單演示了各部分的處理過程:
一、安裝時寫入加密資料:
(這裡的加密使用了)
DES->GenerateKey("neowarton0731");
TDateTime *d=new TDateTime(Date());
AnsiString times,date,filename;;
char dir[256];
times="0";
date=DateTimeToStr(*d);
times=DES->EncryptString(times);
date=DES->EncryptString(date);
//install=DES->EncryptString(date);
AnsiString s=times+date;
OutputDeString(s.c_str());
filename="";
GetSystemDirectory(dir,sizeof(dir));
filename=dir+filename;
if(FileExists(filename))
{
Application->Tenate(); //if the ini file is alread exists exit;
}
else
{
TIniFile *ini=new TIniFile(filename);
ini->WriteString("setup","times",times);
ini->WriteString("setup","date",date);
ini->WriteString("setup","install",date);
delete ini;
//write register
TRegistry *reg=new TRegistry();
reg->Key=HKEY_LOCAL_MACHINE;
if(reg->KeyExists("CurrentVersionmysoft">SOFTWAREMicrosoftWindowsCurrentVersionmysoft"))
Application->Terminate();//if the key exists,terminate
reg->OpenKey(");
reg->WriteString("warning","dot modify these items!Otherwise,your system will not run!neowarton2003xian");
reg->WriteString("times",times);
reg->WriteString("date",date);
reg->WriteString("install",date);
reg->CloseKey();
delete reg;
}
二、安裝時在install Shield中加入以下程式碼:
Lauchapp(SUPPORTDIR^"test.exe","") //test為上面程式碼的exe檔案
其它程式碼省略
三、在應用起動時:
bool rt;
TForm1 *fm1=new TForm1(NULL);//試用版彈出的視窗,點選試用返回判斷結果
fm1->ShowModal();
rt=fm1->try_time;//是否已經過期
delete fm1;
if(rt)
{
MessageBox(NULL,"¥»³nÅé¸Õ¥Î´Á¤v¹L¡A§A¤£¯à¦A¨Ï¥Î¸Óª©¥»¡A½ÐÁʶR¥¿¦¡ª©¡Inn ","¯«²þ¥D¾÷ºôµ¸¨¾¤õÀð",MB_OK+MB_ICONINFORMATION);
Application->Terminate();//Ãö³¬À³¥Îµ{§Ç
return 0;
}
四、點選試用按鈕,返回是否過期的bool值:
//read the encrypted ini file in the system directory to read the time and date
//if filenote exist,return false,if the time and date wrong return false;
//read data and then time from the register,where the data is also encrypted
char dir[256];
AnsiString filename="";
GetSystemDirectory(dir,sizeof(dir));
//the ini fils is in the system directory
filename=dir+filename;
if(!FileExists(filename))
{
Application->MessageBox("§Aªº¨t²Î¹ï¥»³n¥ó¶i¦æ¤F«Dªkקï¡A¤w¸g¤£¯à¦A¨Ï¥Î¡Inn ","¯«²þ¥D¾÷¨¾¤õÀð",MB_ICONERROR);
HWND H;
H=FindWindow(NULL,"DNAAlarm");
::SendMessage(H,WM_CLOSE,0,0);
OutputDebugString("go here");
this->try_time=true;
Close();
return;
}
TIniFile *ini=new TIniFile(filename);
AnsiString times,datetime,installday;
times=ini->ReadString("setup","times","");
datetime=ini->ReadString("setup","date","");
installday=ini->ReadString("setup","install","");
getthepara();
AnsiString tt=times_reg+"|"+datetime_reg+"|"+datetime_reg;
AnsiString ttt=times+"|"+datetime+"|"+installday;
if((times_reg!=times)||(datetime_reg!=datetime)||(installday!=datetime_reg))
{
this->try_time=true;
}
else //------------------------------------
{
DES->GenerateKey("neowarton20030731");
times=DES->DecryptString(times);
datetime=DES->DecryptString(datetime);
installday=DES->DecryptString(installday);
times_reg=DES->DecryptString(times_reg);
datetime_reg=DES->DecryptString(datetime_reg);
installday_reg= DES->DecryptString(installday_reg);
tt=times_reg+"|"+datetime_reg+"|"+datetime_reg;
ttt=times+"|"+datetime+"|"+installday;
//¦r²Å¦êÂà´«¦¨¤é´Á
int t=StrToInt(times);
TDateTime *dt=new TDate(Date());
TDateTime *s=new TDate(StrToDate(datetime)); TDateTime *install=new TDate(StrToDate(installday));
int tmp=*dt-*s;
int tmp2=*dt-*install;
//int t=*s-*dt;
if((tmp>=-1)&&(tmp<=90)&&(tmp2>=-1)&&(tmp2<=90)&&(t<150))
{
AnsiString times_tmp=DES->EncryptString(IntToStr(StrToInt(times)+1));
AnsiString datetime_tmp=DES->EncryptString(DateTimeToStr(*dt));
ini->WriteString("setup","times",times_tmp);
ini->WriteString("setup","date",datetime_tmp);
putthepara(times_tmp,datetime_tmp);
this->try_time=false;
}
else
{
//write wrong time;
AnsiString times_tmp=DES->EncryptString(IntToStr(StrToInt(times)+200));
AnsiString datetime_tmp=DES->EncryptString(DateTimeToStr(*dt+3000));
ini->WriteString("setup","times",times_tmp);
ini->WriteString("setup","date",datetime_tmp);
putthepara(times_tmp,datetime_tmp);
this->try_time=true;
}
}
delete ini;
this->Close();
五、ini檔案:
[setup]
times=inAk6xcTevw=
date=XOqvDla+r+2Xtl4ZM567cQ==
install=kAP2X5LVcWaXtl4ZM567cQ==
(資料已經加密)
.....
六、登錄檔內容與INI檔案內容基本相同!
上面的程式碼只是初步的,如果你要使用,需要經過詳細的修改才對。由於是繁體版,部分註釋顯示為亂碼,我已經將註釋刪除了,裡面的訊息框裡的字串也是亂碼,可以改改就行!敬請原諒!
(注,本文只是推薦一種簡單的方法,以滿足在些朋友簡單的要求,程式碼剛實現功能 ,存在很多問題,我才準備改改,有好的方法可以提出來!)歡迎大家提示好的方法。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-981658/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 怎樣用VC限制軟體的試用次數 (轉)
- 廣州南沙軟體園面試試題及答案(C++部分) (轉)面試C++
- 廣州南沙軟體園面試試題及答案(VB、ASP部分) (轉)面試
- 軟體測試--軟體生命週期
- 如何讓軟體開發從功能測試轉入應用測試?
- 軟體測試生命週期
- PR效能測試軟體適用於哪些測試
- 試用期工作小結
- 程式碼測試用例指南
- SDN控制器關鍵效能指標及測試方法—Vecloud指標Cloud
- 中軟Linux3.0試用 (轉)Linux
- 軟體測試用例設計方法
- 敏捷軟體測試的七個關鍵成功要素敏捷
- Sqlyog過期處理試用SQL
- 測試用例的最佳化與整理:確保軟體質量的關鍵步驟
- 認識軟體測試步測試測試 (轉)
- 軟體測試用例編寫(含思路)
- 關於CAD軟體看圖功能的初步試用結果
- 澳門美團跨多應用測試程式碼一鍵生成案例分享
- 軟體測試---BUG的生命週期
- 軟體測試與程式碼安全詳解
- 做軟體測試需要懂程式碼嗎?
- 自動化測試工具的3個關鍵部分
- 軟體測試用例設計實用經驗之談
- 關於軟體複用的思考 (轉)
- 有關軟體複用問題(蓋上一次的文章) (轉)
- 試用Linux的法寶--DemoLinux試用(轉)Linux
- 軟體測試中的測試計劃和測試用例起到什麼作用?
- 軟體測試轉型之路
- 小議軟體測試(轉)
- 軟體測試技術及工具
- 軟體測試及工具培訓
- 做好測試計劃和測試用例的工作的關鍵是什麼?
- 自動化測試在國際軟體測試中的應用
- 測試工程師,避免試用期被辭退指南工程師
- 高階測試工程師必備技術:用Git版本控制自動化測試程式碼工程師Git
- HelixQAC-軟體程式碼靜態測試工具
- 軟體測試要學什麼(4)軟體測試流程及常見測試點總結