Multiple Instances of same Application as a Windows Service?

前端 未结 3 1885
耶瑟儿~
耶瑟儿~ 2021-02-14 23:05

I have an application that manages the heavy processing for my project, and need to convert it to a \"Windows Service.\" I need to allow running multiple versions

3条回答
  •  难免孤独
    2021-02-14 23:59

    There is option #4 that I'm successfully using in my project aka "named instances".

    Every installation of your app has custom name and each installation has its own service. They are completely independent and isolated from each other. MS SQL Server is using this model if you try to install it multiple time on single machine.

提交回复
热议问题