Archive: dselkirk's services question


dselkirk's services question
Section "install service"

!insertmacro SERVICE "create" "testingblah" \
"path=C:\Documents and Settings\John Kimble\Desktop\New Folder\testingblah.exe;autostart=on;"

SectionEnd

this is what i have... what is the right code to make the testingblah.exe run with a configuration file in the background and how to autostart? ... the command line in command prompt is testingblah.exe -b configuration.config now how could i make a service that does this? and autostarts sorry for the newbie question by the way i just started this 2 days ago thanks yall. :)


oh sorry i forgot to tell you the " -b " means background .. so testingblah.exe -b configuration.config means it runs with the config file in the background (press ctrl alt del and u see it )


You can not run any application as a service. It has to be written specifically to be a service. See MSDN for more details.


ohhhh so how could i make this application run on startup?


You search the Wiki for start up and find the answer.


k thanks