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
|