Multiple instances of a service.

  • Thread starter Thread starter Frank Rizzo
  • Start date Start date
F

Frank Rizzo

I have written a .NET service, but now I want to install multiple
instances of it onto the customer's server (for various reasons), much
like SQL Server does. How would I go about doing that?

Thanks.
 
I have written a .NET service, but now I want to install multiple
instances of it onto the customer's server (for various reasons), much
like SQL Server does. How would I go about doing that?
Let the user choose the name & location of your service during setup.

Greetings,
Wessel
 
I'd think that in addition to making sure each instance gets installed
in a separate location, you would also need to insure that the
"ServiceName" property is different for each one. There may be
additional similar issues.
 
Back
Top