View Single Post
  #1 (permalink)  
Old 12-04-06, 09:36
Shane Melson Shane Melson is offline
BOD Member
 
Join Date: Jul 2006
Posts: 107
Default Creating a Service in Windows

To create a service in windows you need to execute the following command

sc create "service name" binPath= "path of service" DisplayName="Displayname"

E.G. If you want to create DrWebCom service than command should be like

sc create "DrWebCom" binPath= "C:\Program Files\SWsoft\Plesk\DrWeb\drwebcom.exe" DisplayName= "DrWebCom"

Check this service in Administrative Tools >> Services
Reply With Quote