How can I change the name of a windows service?

前端 未结 3 599
慢半拍i
慢半拍i 2021-02-13 15:36

I have a windows service application developed in C#. The same service needs to be run with different config files. To run on these on the same machine I would need to change th

3条回答
  •  执念已碎
    2021-02-13 15:50

    In your win service class that derives from ServiceBase, there is a property that is inherited that you can set called ServiceName. You could make an app.config, add a setting for the service name and have your win service class assign that property accordingly. That way each service name will be unique as long as you change the setting in the app.config.

提交回复
热议问题