2

I'm trying run following in my command prompt:

sc create mynewservice binpath="C:\Program Files\Arelle\arelleCmdLine.exe" --webserver localhost:10100

This won't succeed since there is the : in the optionname.

I can't seem to find the correct syntaxt

Cherry
  • 31,309
  • 66
  • 224
  • 364
JMan
  • 2,611
  • 3
  • 30
  • 51

1 Answers1

6

Try this:

sc create mynewservice binpath="C:\Program Files\Arelle\arelleCmdLine.exe --webserver localhost:10100"
foxidrive
  • 40,353
  • 10
  • 53
  • 68