How to create a Service in Windows
Hello,
Sometime some services on the windows machine don’t work properly and need to be re-created. To do this first stop and disable the existing service and another service need with different name need to be created.
To create a service in a windows server perform the following operations on the server
1) Start >> run >> cmd
Go to command prompt
2) sc create "service name" binPath= "path of service" DisplayName="Displayname"
E.g. to create DrWebCom service than command should be like
sc create "DrWebCom" binPath= "c:\path to drweb folder\DrWeb\drwebcom.exe" DisplayName= "DrWebCom"
Now check the service in administrative tools >> services and start the service.
That's All.
- Firew@ll
|