vote up 2 vote down star

I want to specify my service name in the app.config without needing to recomple and install/uninstall my service repeatedly. But just retrieving service name from app.config, the service seems ignoring it. Are there any special tricks how to obtain this? Thanks in advance.

I mean classic windows service. I don't think any code is needed here. I just want to retrieve the service name from app.config dynamically.

flag

35% accept rate
You've got to show us some code for us to be able to help – jpoh Jul 9 at 10:07
Do you mean windows service, wcf service, or classic webs service? – Calanus Jul 9 at 10:36

2 Answers

vote up 2 vote down

After searching a while on the internet and reading articles, it became clearer to me that A service name can't be specified in the app.config in so dynamic way, instead sc command can be used to perform a similar solution. You can specify other configuration variables in the app.config and use sc to rename it

sc.exe create "servicename" binPath="myservicepath.exe"

link|flag
vote up 0 vote down

Assuming you mean Windows Service, the answer is no. The service has to be installed in the registry, and the name is one of the registry keys.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.