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?

link|improve this question

may b the UAC is blocking it?..which is the OS of the user? – PresleyDias Feb 25 at 17:24
Anti malware is most likely. Standard user should be able to write there. – David Heffernan Feb 25 at 17:36
try OpenKey('\Software\Microsoft\Windows\CurrentVersion\Run', FALSE) (CanCreate key set to false) – kobik Feb 25 at 19:04
1  
@DavidHeffernan, BTW this does not contradict what you initially said. I believe windows security center is blocking these entries to prevent malware. – kobik Feb 25 at 22:48
1  
@kobik By default standard users can write to HKCU\Software\....\Run – David Heffernan Feb 25 at 23:00
show 7 more comments
feedback

1 Answer

up vote -2 down vote accepted

I see no solution. I will see what the future will reserve to us. :) Closed.

link|improve this answer
I dislike this practice of answering your own question with an answer that is not really an answer, and then immediately accepting it. It decreases the value of the site the more people do this. Ergo, a -1 for you, that would be -2 if I could do so twice. (ie, please don't do this.) – Warren P May 26 at 15:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.