小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Kendy--DELPHI加注冊(cè)表自啟動(dòng)的最簡(jiǎn)單代碼

 intruder 2005-12-12
[Delphi]DELPHI加注冊(cè)表自啟動(dòng)的最簡(jiǎn)單代碼
作者:jondy   來(lái)源:jondy‘s Blog(http://zhack.blog.163.com/)

[感謝jondy朋友的熱心!把他更新后的代碼貼上來(lái),這個(gè)更適合寫(xiě)小軟件]

program  exe;
uses
 windows;
// 注冊(cè)表新建鍵值的函數(shù)
procedure CreateKey(const RootKey : HKey; Key, ValueName, Value: string);
var
  Handle: HKey;
  Res,
  Disposition: Integer;
begin
  Res := RegCreateKeyEx(RootKey, PChar(Key), 0, ‘‘,
    REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, nil, Handle, @Disposition);
  if Res = 0 then begin
    Res := RegSetValueEx(Handle, PChar(ValueName), 0,
      REG_SZ, PChar(Value), Length(Value) + 1);
    RegCloseKey(Handle)
  end;
end;
begin      //  跟位置名、文件路徑
 CreateKey(HKEY_LOCAL_MACHINE,‘SoftWare\Microsoft\Windows\CurrentVersion\Run‘,‘AutoRun‘,‘C:\WINDOWS\regedit.exe‘);
end.
//下面是以前的代碼,由于引用了registry單元,程序會(huì)增大40K左右
uses
registry; var reg:tregistry; begin reg:=tregistry.create; reg.rootkey:=HKEY_LOCAL_MACHINE; reg.openkey(‘SOFTWARE\Microsoft\Windows\CurrentVersion\Run‘,true); reg.WriteString(‘ScanRegistry‘,‘mir47.EXE‘); reg.closekey; reg.free; end.

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶(hù)發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多