레지스트리

StartCleaner - Automatic Startup Program Organizer

You can organize automatic startup programs with just one click. Easily manage programs that run automatically at boot-up. Consolidate management of various items including the startup folder, registry, task scheduler, and services. Safely change settings by deactivating instead of deleting. DownloadDownload from Kilho.net Homepage StartCleaner: https://startcleaner.kilho.net License StartCleaner is Freeware. You can use it freely...

Registry Monitoring (Delphi)

How to Use 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) =...