vote up 0 vote down star
1

I have a Deplhi based Windows Service that, on installation, parses some command line arguments. I want those arguments to be added to the services command line (ImagePath value on the registry) so that the service is always started with them.

How can I accomplish this?

I want the regedit look like this:
at registry key HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\MyService

  • ImagePath = C:\Path\to\my\service.exe -some -arguments

Thanks

Update: The installation is done with >MyService.exe /install -some -arguments. Those arguments are the ones I want to persist in the command line.

Update: I found a solution by writing directly to the registry (see here), but I'd still like a more elegant solution, like using some TService property or something of that sort. Thanks!

flag

63% accept rate
How is the installtion done? – Uwe Raabe Dec 26 '08 at 19:26

4 Answers

vote up 2 vote down check

Ok, after some research, I gave up on an elegant approach, and took the straight-forward path of writing directly to the registry.

To make things simple, I did this: I store the arguments I wanted to pass in variables on my TService. Then, I set the AfterInstall event to write directly into the registry (using a TRegistry object) the exact command line I wanted.

uses Registry;
procedure MyService.AfterInstall(Sender: TObject) ;
var
  reg:TRegistry;
begin
  reg := TRegistry.Create;
  try
    reg.RootKey := 'HKEY_LOCAL_MACHINE';
    if reg.OpenKey('SYSTEM\CurrentControlSet\Services\MyService', True) then
    begin
      reg.WriteExtendString ('ImagePath', ParamStr(0) + ' -some -arguments') ;
      reg.CloseKey;
    end;
  finally
    reg.Free;
  end;
end;

Not the elegant solution I was looking for, but it does the job.

Thanks for the other answers through!

link|flag
vote up 1 vote down

Service arguments can be passed in the lpBinaryPathName argument to the CreateService function. In Delphi's TService, this is called inside TServiceApplication.RegisterServices.InstallService, which you cannot override (easily).

Therefore, I suspect the easiest way to do this is going to be to handle the TService.AfterInstall event and update the registry yourself via ChangeServiceConfig.

link|flag
vote up 0 vote down

I don't think you can make the service start with them, but if you store those parameters in the registry you can modify the program to on future starts always go and grab them. (i.e. if ParamCount = 0 then retrieve params from registry)

link|flag
You can surely make the service start with these params. The question is how to make the installer add them to the registry. – Uwe Raabe Dec 26 '08 at 19:25
vote up 0 vote down

Pablo, I had the same question and couldn't find anything and went the route of editing the registry as well. In addition, I use Custom Actions also to create additional install directories and copy files (in C#). Your suggestion was helpful and I stopped looking for an "elegant" way as well. thanks

link|flag

Your Answer

Get an OpenID
or

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