Syntax to create a Windows Service -


i have 2 folders 'c:\apps-a\' , 'c:\apps-b\', both need same service installed.

it installed in folder 'b' not 'a'. (was deleted while ago , needs installed again)

path running executable 'c:\apps-b\windows service\convertservice.exe'

i running following sc create doesnt seem work..

c:\windows\system32>sc create "cs" binpath="c:\apps-b\windows service\convertservice.exe" start= auto 

please correct syntax, when run it, usage instruction

this resolved now, looks sc need make sure there space after equal sign (binpath)

c:\windows\system32>sc create "cs" binpath= "c:\apps-b\windows service\convertservice.exe" start= auto 

Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -