An user sent me bug report that says
ERegistryException-Failed to set data for 'xyz'.
procedure RunFileAtWinStartUp(aFile: string; Active: boolean);
VAR Reg: TRegistry;
begin
Reg:= TRegistry.Create;
TRY
Reg.RootKey:= HKEY_CURRENT_USER;
if Active then
if Reg.OpenKey('\Software\Microsoft\Windows\CurrentVersion\Run', TRUE) then
begin
Reg.WriteString(ExtractOnlyName(aFile),'"'+ aFile + '"'); <-------- Error here
reg.CloseKey;
end;
...
Why my program does not have have write permissions? I don't see why the program crashes since I test if the key was successfully open.
Maybe it is an antivirus that is blocking the program to write to 'autorun' registry?
OpenKey('\Software\Microsoft\Windows\CurrentVersion\Run', FALSE)(CanCreatekey set to false) – kobik Feb 25 at 19:04