vote up 0 vote down star

I want to turn a program I have into a service so I can use it without logging it. Basically what it does is it backs up specified folders to a specified location using SSH. However the problem I'm running into is I don't know how to tell it these items. I only know how to start, stop, and run a custom command with only an integer with a parameter.

How can I do this?

Windows Service, not a Web Service

edit: The folders it backs up will not remain consistent and will be updated at every runtime

flag

6 Answers

vote up 1 vote down check

Any service is capable of receiving command line arguments at start-up.

link|flag
The program will be able to read command line arguments – Malfist Jan 19 '09 at 18:52
How can I get a service to read command line arguments? – Malfist Jan 19 '09 at 18:54
When you start the service you can specify them, but only if the service is manually started. For automatic the arguments have to be in the registry (as others pointed out) or in a configuration file. – ocdecio Jan 19 '09 at 18:58
Can I start a service without the user logging in first? I.E. remotely? – Malfist Jan 19 '09 at 19:00
What about the OnStart(String[] args)? – Malfist Jan 19 '09 at 19:03
show 2 more comments
vote up -1 vote down

Why not just Host a WCF Service in the Windows Service to obatain such "admin" functions? (Remoting is also possible)

link|flag
It's in nice bold lettering in the question. Not a Web Service, therefor WCF is out of the question – Malfist Jan 19 '09 at 19:44
vote up 0 vote down

You can instantiate your service and pass command line arguments using the ServiceController class.

using (ServiceController serviceController = new ServiceController(serviceName))
{
   string[] args = new string[1];
   args[0] = "arg1";
   serviceController.Start(args);
}

"arg1" will then be available as regular command line arguments in main() when Windows starts up the service.

link|flag
vote up 1 vote down

Windows services have executables like any other. I believe you can write it to accept command-line parameters and specify those parameters in the Windows Service configuration. You can also have it read a config file. If you're using .NET, there are config file classes in the framework.

link|flag
vote up 1 vote down

Store the service's startup parameters in the registry: and then, when the registry starts, it should read its startup parameters from the registry.

link|flag
Folders change per use. Sorry, I forgot to state that. – Malfist Jan 19 '09 at 18:54
vote up 1 vote down

Would it be possible to use a configuration file to specify these items?

link|flag
I don't think so. Considering the user won't be logged in, and will have to specify the folders each time because they may/will change. – Malfist Jan 19 '09 at 18:53
I see. That would rule out registry entries as well. I agree with ocdecio and Dave though, off the top of my head you should be able to send a string as an argument to a service. – hmcclungiii Jan 19 '09 at 19:03

Your Answer

Get an OpenID
or

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