Tag - 레지스트리

스타트클리너 – 자동 실행 프로그램 정리

자동 실행 프로그램 정리를 클릭 한 번에 할 수 있습니다. 부팅 시 자동 실행 프로그램을 손쉽게 관리합니다. 시작프로그램 폴더, 레지스트리, 작업 스케줄러, 서비스 등 다양한 항목을 통합 관리합니다. 삭제 대신 비활성화하여 안전하게 설정을 변경합니다. 다운로드 길호넷에서 다운로드하기 홈페이지 스타트클리너 : https://startcleaner.kilho.net 라이센스 스타트클리너는 Freeware 입니다. 회사, 집, 관공서, 학교 등 공간 제약 없이 마음대로 사용하실 수 있습니다. 자유롭게 어디에서나 배포가...

레지스트리 모니터링(Delphi)

사용방법 procedure RegistryMonitor(RootKey: HKEY; Key: string; Proc: TProc; WatchSub: boolean); begin TThread.CreateAnonymousThread(procedure var Reg: TRegistry; Event: cardinal; begin Reg := TRegistry.Create; Reg.RootKey := RootKey; if Reg.OpenKeyReadOnly(Key) then begin Event := CreateEvent(nil, False, False, nil); if Event > 0 then begin while True do begin RegNotifyChangeKeyValue(Reg.CurrentKey, WatchSub, REG_NOTIFY_CHANGE_LAST_SET, Event, True); if WaitForSingleObject(Event, INFINITE) = WAIT_OBJECT_0 then TThread.Synchronize(TThread.CurrentThread, procedure begin Proc end); end; end; end; Reg.Free; end).Start; end; // Proc : 명령어 입력 // WatchSub : 하위도 모니터링...