I created one windows serives
It gets the name of the service from web config file.
I used the below link for getting value from webconfig. http://www.codeprojec
I needed to do this for a quick demo of a service running with different parameters.
I copied the directory containing the service exe and then used the sc create
command to setup the second service.
sc create "[NewServiceName]" binPath="[PathToCopiedServiceDirectory]"
How to create a windows service using the Sc.exe command