Creating a Service in Windows
Hello,
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”
That’s all.
You can check this service in Administrative Tools >> Services.

