25

How do I start a service with certain parameters? In another question I have found

net start servicename blah

but if I try this, net throws a syntax error at me.

What am I doing wrong?

Edit: To clarify net start servicename works just fine, but I need to pass parameters to the service. I can do this manually in services.msc by filling in a start parameter before starting the service. But how can I do this from a script?

Another edit: Sorry, but my question was misleading. In my tests, I had many more parameters and it's not the /blah net start complains about. In fact, anything starting with a slash is fine. So net start servicename /blah works, net start servicename blah doesn't work. Since I need net start servicename /foo bar, it's the bar that is the problem.

sbi
  • 513

6 Answers6

34
sc start fooservice arg1 arg2 ...
grawity
  • 17,092
8

NET START won't allow you to pass arbitrary parameters as far as I know (it appears they have to be prefixed with a /), I believe the correct way is to modify the appropriate registry key and stop/start the service. Assuming your custom service is called MyService:

[HKLM\SYSTEM\CurrentControlSet\Services\MyService]
"ImagePath":C:\Projects\MyService\bin\MyService.exe Parameter1 Parameter2

Really though, a better way is to store your configuration somewhere the service knows about, like perhaps the registry or file system, and read whatever values you need. As you can see customizing the command line is a bit more painful than it should be.

If this is by chance a .NET developed service, you could create n copies of the executable on your file system, and have each automatically get the parameters from the appropriate app.config file.

It sounds like you may have stepped too far outside the Win32 box. Since this sounds like custom development any of the other offered solutions, while perhaps not your ideal, will work correctly and are a safer way to go.

Goyuix
  • 3,244
6

net start servicename /foo for a single argument

net start servicename /"foo bar" for a string or list of args

Note: This question is 8 years old but I don't have the reputation to comment on the accepted answer and this is still a top google result in 2018 so I wanted to clarify what was working now in regards to the questions final edit.

4

You need a slash before each parameter when using net start. Also make sure to quote parameters that have spaces.

net start servicename /param0 /"param1 with spaces" /"/param2_has_slash"
Even Mien
  • 657
1

You need to use the actual service name as it appears in control panel, services. If it contains spaces, you must put quotes around the service name.

To get the actual service name just type in net start without any parameters on the command prompt. It should give you a list of all the running services so you can get the actual service name. Then just use net start <servicename>

0

Could InstSrv and SrvAny assist in this? Guide and Links

Dave M
  • 4,494